Question Detail If (*p) and **p is same NoYes Answer: Option A Similar Questions : 1. Wild pointer in C if pointer is pointing to a memory location from where variable has been deletedif pointer has not been initializedif pointer has not defined properlyif pointer pointing to more than one variable Answer: Option B 2. The first expression in a for loop is Step value of loopValue of the counter variableAny of aboveNone of above Answer: Option B 3. Difference between calloc() and malloc() calloc() takes a single argument while malloc() needs two argumentsmalloc() takes a single argument while calloc() needs two argumentsmalloc() initializes the allocated memory to ZEROcalloc() initializes the allocated memory to NULL Answer: Option B 4. To access the members of structure which symbol is used *-,. Answer: Option D 5. Out of following program : float x = 10.7; int i; i = (int) x; print i; nullerror10garbage value Answer: Option C Read more from - C Programming Questions Answers - Chapter 1