C | Advanced Pointer | Question 2

Last Updated :
Discuss
Comments
Assume sizeof an integer and a pointer is 4 byte. Output? C
#include <stdio.h>

#define R 10
#define C 20

int main()
{
   int (*p)[R][C];
   printf("%d",  sizeof(*p));
   getchar();
   return 0;
}
200
4
800
80
Tags:
Share your thoughts in the comments