Question Detail Exit() is same as return TRUEFALSE Answer: Option B Similar Questions : 1. Continue statement used for To continue to the next line of codeTo stop the current iteration and begin the next iteration from the beginningTo handle run time errorNone of above Answer: Option B 2. Any type of modification on the parameter inside the function will reflect in actual variable value can be related to call by valuecall by referenceboth of abovenone of above Answer: Option B 3. Break statement is used for Quit a programQuit the current iterationBoth of aboveNone of above Answer: Option B 4. 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 5. What is true about fputs function write to a filetakes two parametersrequires a file pointerall of above Answer: Option D Read more from - C Programming Questions Answers - Chapter 1