Question Detail The first expression in a for loop is Step value of loopValue of the counter variableAny of aboveNone of above Answer: Option B Similar Questions : 1. What is dangling pointer in c if pointer is pointing to a memory location from where variable has been deletedif pointer is assigned to more than one variableif pointer is not defined properlynone of above Answer: Option A 2. Disadvantage of array in C is We can easily access each elementIt is necessary to declare too many variablesIt can store only one similar type of dataNone of above Answer: Option C 3. What will be output of #include void main() { char test =`S`; printf("\n%c",test); } SErrorGarbage valueNone of above Answer: Option A 4. 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 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