Advertisement
Advertisement
10th Grade C Quizzes, Questions & Answers
Recent C Quizzes
Questions: 10 | Attempts: 270 | 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: 414 | Last updated: Feb 17, 2025
-
Sample QuestionTo declare a header file you use #include headerfile.h
Questions: 20 | Attempts: 197 | 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: 1752 | 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: 2439 | Last updated: May 21, 2025
-
Sample QuestionAre the expression *ptr++ and ++*ptr are same?
Questions: 10 | Attempts: 13350 | Last updated: Mar 22, 2025
-
Sample QuestionC language has been developed by ?
Questions: 5 | Attempts: 286 | Last updated: Mar 17, 2025
-
Sample QuestionWhich type of language is C?
Questions: 6 | Attempts: 518 | Last updated: Mar 20, 2025
-
Sample QuestionThe characters in C are grouped into ____ categories.
Questions: 16 | Attempts: 1688 | Last updated: Oct 22, 2025
-
Sample QuestionGiven: import java.util.*;class Test { public static void main(String[] args) { // insert code here x.add("one"); x.add("two"); x.add("TWO"); System.out.printIn(x.poll()); }}
Questions: 11 | Attempts: 1452 | Last updated: Feb 20, 2025
-
Sample QuestionThe body of a while loop may never get executed.
Advertisement