C Programming
Find the output of the following program.void main(){ printf("%d, %d", sizeof(int *), sizeof(int **));}
void fun(int *p[][4]){}
void fun(int *p[4]){}
void fun(int *p[3][4]){}
void fun(int p[][4]){}
None of these
ANSWER
DOWNLOAD EXAMIANS APP
↑