Continue statement used a. To continue to the next line of code b. To debug c. To stop the current iteration and begin the next iteration from the beginning d. None of the above statements are correct
SIKSHAPATH Latest Questions
In the C program ‘&’ is used in ‘scanf’ to indicate or, What is & indicate in scanf? a. AND operation b. Memory location c. Value of the variable d. Value at the memory location.
Which of the following is not a valid variable name declaration? (a) int _a3; (b) int 3_a; (c) int a_3; (d) int _3a
For initialization a = 2, c = 1 the value of a and c after this code will be c = (c) ? a = 0 : 2; options: 1.a = 0, c = 0; 2.a = 2, c = 2; 3.a = 2, c ...
Which of the following is not user defined data type? 1 : struct book { char name[10]; float price; int pages; }; 2 : long int l = 2.35; 3 : enum day {Sun, Mon, Tue, Wed};
1.A variable declared in a function can be used in main(). A. True B. False C. True if it is declared static D. None of the mentioned 2.What is the precedence of arithmetic operators (from highest to lowest)? A. %, *, /, +, – B. %, +, /, *, – C. +, -, %, *, ...