Pointers – Yes / No Questions 1. Is there any difference between the following two statements? char *p=0; char *t=NULL; A. Yes B. No…
Pointers – True / False Questions 1. Are the expression *ptr++ and ++*ptr are same? A. True B. False 2. Will the program compile?…
Pointers – Point Out Correct Statements 1. Which of the following statements correctly declare a function that receives a pointer to pointer to a…
Pointers – Point Out Errors 1. Point out the compile time error in the program given below. A. Error: invalid assignment for x…
Pointers – Find Output of Program 1. What will be the output of the program? A. ink B. ack C. ite D. let 2.…
Pointers – General Questions 1. What is (void*)0? A. Representation of NULL pointer B. Representation of void pointer C. Error D. None…