Advertisement
Advertisement
11th Grade C Quizzes, Questions & Answers
Think your child knows their 11th grade C? Read more
Challenge them with our fun and engaging C quizzes! Perfect for reinforcing classroom learning and discovering new facts about the world around them.
Read less
Top Trending 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: 4207 | Last updated: Jun 17, 2025
-
Sample QuestionC language has been developed by?
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: 2419 | Last updated: May 21, 2025
-
Sample QuestionAre the expression *ptr++ and ++*ptr are same?
The 'Blind Coding C Programming Practice Quiz!' assesses understanding of C programming concepts through various coding scenarios. It tests knowledge on functions, output predictions, error identification, and data structure...
Questions: 50 | Attempts: 1079 | Last updated: Feb 6, 2025
-
Sample QuestionWhat will be the output of the program? #include #include int main() { float n=1.54; printf("%f, %f\n", ceil(n), floor(n)); return 0; }
C is a programming language which was developed by Dennis Ritchie. C language incorporates low-level access to memory, clean style and simple set of keywords which makes 'C' language a perfect system...
Questions: 10 | Attempts: 11074 | Last updated: Apr 21, 2025
-
Sample Questionvoid main() { int const * p=5; printf("%d",++(*p)); }
“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: 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); }
Recent C Quizzes
Questions: 50 | Attempts: 410 | Last updated: Mar 21, 2025
-
Sample Question#include<stdio.h> main() { enum { abesit, abesec=4,akgec}; printf("%d %d", abesit, akgec); }
Questions: 15 | Attempts: 440 | Last updated: Mar 22, 2025
-
Sample Question1. What will be the output of the following C code? #include <stdio.h> int main() { int a = 10, b = 10; if (a = 5) b--; printf("%d, %d", a, b--); }
Questions: 25 | Attempts: 757 | Last updated: Mar 21, 2025
-
Sample QuestionAn array Index starts with.?
Questions: 20 | Attempts: 258 | Last updated: Mar 21, 2025
-
Sample QuestionWhich of the following shows the correct hierarchy of arithmetic operations in C?
Questions: 40 | Attempts: 788 | Last updated: Mar 21, 2025
-
Sample QuestionIdentify the loop construct:
Questions: 54 | Attempts: 94 | Last updated: Oct 14, 2025
-
Sample QuestionWhich of the following is not a pointer declaration?
Questions: 37 | Attempts: 2720 | Last updated: Jul 4, 2025
-
Sample QuestionWhat statement can print \n on screen?
Questions: 21 | Attempts: 374 | Last updated: Mar 21, 2025
-
Sample QuestionWhat will be output if you will compile and execute the following c code? #include<stdio.h> struct marks{ int p:3; int c:3; int m:2; }; int main(){ struct marks s={2,-6,5}; printf("%d %d %d",s.p,s.c,s.m); return 0; }
Questions: 20 | Attempts: 107 | Last updated: Feb 17, 2025
-
Sample QuestionWhat is the output? main() { char val[] = {‘a’,’b’,’c’,’\n’,’c’,’\0’}; char *p, *val1, *val2; p = &val[3]; val1 = val; val2 = val; printf(“%d”, ++*p + ++*val1 – 32); }
Questions: 20 | Attempts: 294 | Last updated: Feb 17, 2025
-
Sample QuestionWhich of the following is a keyword used for a storage class?
Advertisement