Teaching UGC NET Mock Test Series 2025 (Paper 1 & 2) Programming and Data Structure Programming in C
#include
int main()
{
int ar[] = {1, 4 ,3};
printf("%d ", sizeof(ar));
}
What is the output of the above given code if integer size is 4 bytes?1
4
2
8
3
12
4
Error