Sail E0 Webinar
Question
What is the output of this C code?
int main()
{
char *p = NULL;
char *q = 0;
if (p)
printf(" p ");
else
printf("nullp");
if (q)
printf("q\n");
else
printf(" nullq\n");
}
Options:
A .  nullp  nullq
B .  Depends on the compiler
C .  x nullq where x can be p or nullp depending on the value of NULL
D .  p   q
Answer: Option A


None.



Was this answer helpful ?
Next Question

Submit Solution

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

Latest Videos

Latest Test Papers