Pointers – True / False Questions1. Are the expression *ptr++ and ++*ptr are same? A. True B. False 2. Will the program compile?…
Pointers – Point Out Correct Statements1. Which of the following statements correctly declare a function that receives a pointer to pointer to a…
Pointers – Point Out Errors1. Point out the compile time error in the program given below. A. Error: invalid assignment for x…
Pointers – Find Output of Program1. What will be the output of the program? A. ink B. ack C. ite D. let 2.…
Pointers – General Questions1. What is (void*)0? A. Representation of NULL pointer B. Representation of void pointer C. Error D. None…
Functions – Yes / No Questions1. Functions cannot return a floating point number A. Yes B. No 2. Every function must return a…
Functions – True / False Questions1. A function cannot be defined inside another function A. True B. Fals 2. Functions cannot return more…
Functions – Point Out Correct Statements1. Which of the following statements are correct about the program? A. It prints garbage values infinitely B.…
Functions – Point Out Errors1. Point out the error in the program A. Missing parenthesis in return statement B. The function should…
Functions – Find Output of Program1. What will be the output of the program in the 16-bit platform (Turbo C under DOS)? A.…