What will be output of the following “c” code?
![]()
Practice Variable Number of Arguments – 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;
}