What will be output of the following “c” code?


Loading

โœช Choose the correct option.

What will be output of the following “c” code?


#include

int main(){

float x;

x=(int)5.6f*3.2f/sizeof((int)6.6);

printf("%f",x);

return 0;

}

A. 8.96
B. 9.6
C. 8
D. 2

Leave a Comment