Question Detail To access the members of structure which symbol is used *-,. Answer: Option D Similar Questions : 1. 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 2. 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 3. Which of the following below is/are valid C keywords integerintnullnone of above Answer: Option B 4. Due to variable scope in c Variables created in a function cannot be used another functionVariables created in a function can be used in another functionVariables created in a function can only be used in the main functionNone of above Answer: Option A 5. Exit() is same as return TRUEFALSE Answer: Option B Read more from - C Programming Questions Answers - Chapter 1