Question Detail If (*p) and **p is same NoYes Answer: Option A Similar Questions : 1. printf() belongs to which library of c stdlib.hstdio.hstdout.hstdoutput.h Answer: Option B 2. What is true about fputs function write to a filetakes two parametersrequires a file pointerall of above Answer: Option D 3. What will be the output of following program #include main() { int x,y = 10; x = y * NULL; printf(\"%d\",x); } error010Garbage value Answer: Option B 4. What is prototype of a function in C It is the return type of a functionIt is the return data of the functionIt is declaration of a functionIt is a datatype Answer: Option C 5. What is correct order of precedence in C Addition, Division, ModulusAddition, Modulus, DivisionMultiplication, Substration, ModulusModulus, Multiplication, Substration Answer: Option D Read more from - C Programming Questions Answers - Chapter 1