Sail E0 Webinar
Question


What will be the output of the program if the size of pointer is 4-bytes?


#include<stdio.h>
int main()
{
printf("%d, %d\n", sizeof(NULL), sizeof(""));
return 0;
}
Options:
A .  2, 1
B .  2, 2
C .  4, 1
D .  4, 2
Answer: Option C

In TurboC, the output will be 2, 1 because the size of the pointer is 2 bytes in 16-bit platform. 
But in Linux, the output will be 4, 1 because the size of the pointer is 4 bytes.
This difference is due to the platform dependency of C compiler.



Was this answer helpful ?
Next Question

Submit Solution

Your email address will not be published. Required fields are marked *

Latest Videos

Latest Test Papers