Advertisement
Advertisement
C Quizzes, Questions & Answers
Recent C Quizzes
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; }
Questions: 10 | Attempts: 1750 | 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); }
Questions: 15 | Attempts: 1135 | 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?
Questions: 15 | Attempts: 2419 | Last updated: May 21, 2025
-
Sample QuestionAre the expression *ptr++ and ++*ptr are same?
Questions: 10 | Attempts: 13315 | Last updated: Mar 22, 2025
-
Sample QuestionC language has been developed by ?
Advertisement