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("\n"); else
printf("nullq\n");
}
Answers
Answered by
2
Answer:
this is the required output...
Attachments:
Answered by
1
Answer:
campus connect
corporate connect
campus connect
connect corporate
compilation. error
Similar questions