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.6 * 3.2/sizeof((int)6.6);

printf("%f",x);

return 0;

}

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

Leave a Comment