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 **(*ptr)[4]=(float **(*)[4])0;

ptr+=5;

printf("%d %d",ptr,sizeof ptr);

return 0;

}

A. 0 2
B. 44597
C. 44596
D. 40 2