C Quizzes, Questions & Answers
Recent C Quizzes
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: 1943 | 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: 252 | 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: 1741 | 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); }
This aptitude test focuses on assessing skills in C programming, specifically related to pointers and strings. It includes practical questions on structure access, pointer operations, and string manipulation, essential for...
Questions: 15 | Attempts: 1134 | Last updated: Mar 16, 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?
This Aptitude test on C-Programming focuses on pointers and strings. It assesses understanding through questions on pointer operations, structure access, and string manipulations, essential for proficiency in C programming.
Questions: 15 | Attempts: 2365 | Last updated: May 21, 2025
-
Sample QuestionAre the expression *ptr++ and ++*ptr are same?
Online MCQ Quiz on C Programming Language
No. of Questions:- 10
Time:- 10 Minutes
Full Mark:- 100
Pass Mark:- 70
This Quiz if for those user who wants to test their command over the programming...
Questions: 10 | Attempts: 13072 | Last updated: Mar 22, 2025
-
Sample QuestionC language has been developed by ?
Advertisement