-
What will be the output of the following C code?
#include <stdio.h>
main()
{
int N = 15;
printf("Size of N is %d, ", sizeof(++N));
printf("Value of N is %d", N);
};
-
- Size of N is 4, Value of N is 15
- Compilation Error
- Garbage value
- Size of N is 15, Value of N is 4
- None of these
Correct Option: A
Size of N is 4, Value of N is 15