Advertisement
Advertisement
12th Grade C Quizzes, Questions & Answers
Recent C Quizzes
Questions: 10 | Attempts: 378 | Last updated: Oct 16, 2025
-
Sample QuestionWhat are not qualifiers in C?
Questions: 10 | Attempts: 4207 | Last updated: Jun 17, 2025
-
Sample QuestionC language has been developed by?
Questions: 15 | Attempts: 789 | Last updated: Feb 21, 2025
-
Sample QuestionIf a variable is a pointer to a structure, then which of the following operator is used to access data members of the structure through the pointer variable?
Questions: 40 | Attempts: 1712 | Last updated: Mar 21, 2025
-
Sample QuestionThe Expression, A=30*1000+2768 evaluates to ________________.
Questions: 10 | Attempts: 713 | Last updated: Feb 17, 2025
-
Sample QuestionCharacter Set of C language contains ?
Questions: 10 | Attempts: 1973 | Last updated: Mar 20, 2025
-
Sample QuestionC language was developed by ?
Questions: 20 | Attempts: 307 | Last updated: Mar 22, 2025
-
Sample QuestionWhat is the proper syntax for do-while?
Questions: 10 | Attempts: 263 | Last updated: Mar 22, 2025
-
Sample Question)#include void call(int,int,int); int main(){ int a=10; call(a,a++,++a); return 0; } void call(int x,int y,int z){ printf("%d %d %d",x,y,z); }
Questions: 10 | Attempts: 411 | Last updated: Feb 17, 2025
-
Sample QuestionTo declare a header file you use #include headerfile.h
Questions: 20 | Attempts: 195 | Last updated: Feb 17, 2025
-
Sample Question1.What will be output if you will execute following c code? #include intmain(){ inti; for(i=0;i<5;i++){ inti=10; printf(" %d",i); i++; } return0; }
Advertisement