Question Detail What is correct order of precedence in C Addition, Division, ModulusAddition, Modulus, DivisionMultiplication, Substration, ModulusModulus, Multiplication, Substration Answer: Option D Similar Questions : 1. 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 2. 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 3. Break statement is used for Quit a programQuit the current iterationBoth of aboveNone of above Answer: Option B 4. Which operator in c can't be overloaded %+::- Answer: Option C 5. 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 Read more from - C Programming Questions Answers - Chapter 1