What will be output of the following “c” code?
Note: 32 b
Practice Variable Number of Arguments – What will be output of the following “c” code?
Note: 32 bit compiler
#include
int main(){
float **(*ptr)[4]=(float **(*)[4])0;
ptr+=5;
printf("%d %d",ptr,sizeof ptr);
return 0;
}