C – Find the Output. Report Poll Please briefly explain why you feel this question should be reported . Report Cancel nullp nullq 50%( 16 voter ) Depends on the compiler 21.88%( 7 voter ) x nullq where x can be p or nullp depending on the value of NULL 18.75%( 6 voter ) p q 9.38%( 3 voter ) Rating nullp nullq Depends on the compiler x nullq where x can be p or nullp depending on the value of NULL p q Results int main() { char *p = NULL; char *q = 0; if (p) printf(” p “); else printf(“nullp”); if (q) printf(“q\n”); else printf(” nullq\n”); } in progress 0 Aptitude placementseason 4 years 1 Answer 1236 views 0
Answer ( 1 )
Please briefly explain why you feel this answer should be reported .
null p null q
Attachment