Question Detail Exit() is same as return TRUEFALSE Answer: Option B 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. Size of void pointer is 1 byte2 byte4 byte8 byte Answer: Option B 3. Which operator in c can't be overloaded %+::- Answer: Option C 4. Difference between structure and union is We can define functions within structures but not within a unionWe can define functions within union but not within a structureThe way memory is allocatedThere is no difference Answer: Option C 5. 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 Read more from - C Programming Questions Answers - Chapter 1