Advertisement
Advertisement
9th Grade C Quizzes, Questions & Answers
Recent C Quizzes
Questions: 25 | Attempts: 1063 | Last updated: Feb 17, 2025
-
Sample QuestionWhich of the following statements should be used to obtain a remainder after dividing 3.14 by 2.1 ?
Questions: 25 | Attempts: 1190 | Last updated: Feb 17, 2025
-
Sample QuestionWhich of the following is not a valid variable name declaration?
Questions: 10 | Attempts: 59 | Last updated: May 22, 2025
-
Sample QuestionChar str[10] = "A quick brown fox jumped over a lazy dog";puts(str);what will print?
Questions: 35 | Attempts: 342 | Last updated: Sep 12, 2025
-
Sample QuestionDo while loop tests the condition at the End of the Loop.
Questions: 10 | Attempts: 2055 | Last updated: Sep 1, 2025
-
Sample QuestionPrint the output of this program void main() { int a, b, c, abc = 0; a = b = c = 40; if (c) { int abc; abc = a*b+c; } printf ("c = %d, abc = %d ", c, abc); }
Questions: 10 | Attempts: 933 | Last updated: Mar 18, 2025
-
Sample QuestionWhat will be the output of the following program? #include<stdio.h> int main() { char numbers[5][6] = {"Zero","One","Two","Three","Four"}; printf("%s is %c",&numbers[4][0],numbers[0][0]); return 0; }
Questions: 40 | Attempts: 1718 | Last updated: Mar 21, 2025
-
Sample QuestionThe Expression, A=30*1000+2768 evaluates to ________________.
Questions: 10 | Attempts: 715 | Last updated: Feb 17, 2025
-
Sample QuestionCharacter Set of C language contains ?
Questions: 10 | Attempts: 1979 | Last updated: Mar 20, 2025
-
Sample QuestionC language was developed by ?
Questions: 20 | Attempts: 310 | Last updated: Mar 22, 2025
-
Sample QuestionWhat is the proper syntax for do-while?
Advertisement