Strings – Yes / No Questions 1. Will the program compile successfully? A. Yes B. No 2. For the following statements will arr[3] and…
Pointers – Yes / No Questions 1. Is there any difference between the following two statements? char *p=0; char *t=NULL; A. Yes B. No…
Functions – Yes / No Questions 1. Functions cannot return a floating point number A. Yes B. No 2. Every function must return a…
Expressions – Yes / No Questions 1. Are the following two statement same? 1. a <= 20 ? (b = 30): (c = 30);…
Declarations and Initializations – Yes / No Questions 1. Is there any difference in the following declarations? A. Yes B. No 2. Suppose a program is…