12th Grade C Quizzes, Questions & Answers
Recent C Quizzes
What do you know about C programming? C Programming Language is a strong and all-purpose procedural programming language that supports structured programming. It was developed in 1972 by Bell Telephone Laboratories to create...
Questions: 10 | Attempts: 3978 | Last updated: Jun 17, 2025
-
Sample QuestionC language has been developed by?
C programming is one of the most popular programming languages, and over the week we got to cover much about C programming structure and pointers. Do you recall that a pointer is a variable which points to the address of another...
Questions: 15 | Attempts: 787 | 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?
Do you think you are an expert with C Programming Language? This quiz highlights specific pertinent questions such as the maximum value of an integer constant when C Language was created, what is permitted in C arithmetic...
Questions: 40 | Attempts: 1668 | Last updated: Mar 21, 2025
-
Sample QuestionThe Expression, A=30*1000+2768 evaluates to ________________.
This quiz provides you the basic multiple choice questions on C constants.
Questions: 10 | Attempts: 711 | Last updated: Feb 17, 2025
-
Sample QuestionCharacter Set of C language contains ?
This quiz provides you the multiple choice questions of C language
Questions: 10 | Attempts: 1952 | Last updated: Mar 20, 2025
-
Sample QuestionC language was developed by ?
Below is a C programming trivia quiz of format specifiers. According to our classes Format specifier is used during input and output. It is a way to tell the compiler what type of data is in a variable during taking input or...
Questions: 20 | Attempts: 304 | Last updated: Mar 22, 2025
-
Sample QuestionWhat is the proper syntax for do-while?
“C” is a computer programming language, which supports structured programming, recursion, and lexical variable scope. It first appeared in 1972 and variations of it are still used prominently today. What do you...
Questions: 10 | Attempts: 255 | 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); }
C programming language is a robust language with a rich set of built in functions and operators that can be used to write any complex program. Take up the C programming basics- functions, array, loops etc. quiz below and get...
Questions: 10 | Attempts: 406 | Last updated: Feb 17, 2025
-
Sample QuestionTo declare a header file you use #include headerfile.h
This C Programming Aptitude Test assesses knowledge in C syntax and logic. It challenges learners with code snippets requiring understanding of loops, conditionals, and memory management to predict outputs or identify errors,...
Questions: 20 | Attempts: 192 | 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; }
This quiz, titled 'Test on C Programming Skills! Trivia Quiz', assesses foundational knowledge in C programming. It features questions on syntax, data types, control structures, and recursion, helping learners gauge their...
Questions: 10 | Attempts: 1748 | Last updated: Mar 21, 2025
-
Sample Question#include<stdio.h> void main() { struct emp { char name[20]; int age; float sal; }; struct emp e={"Tiger"}; printf("\n %d %f",e.age,e.sal); }
Advertisement