Advertisement
Advertisement
Advertisement

11th Grade C Quizzes, Questions & Answers

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 Question
    C language has been developed by?
    Radio Button
    Radio Button
    Radio Button
    Radio Button

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 Question
    Are the expression *ptr++ and ++*ptr are same?
    Radio Button
    Radio Button

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 Question
    What 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; }  
    Radio Button
    Radio Button
    Radio Button
    Radio Button

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 Question
    void main() { int const * p=5; printf("%d",++(*p)); }
    Radio Button
    Radio Button
    Radio Button
    Radio Button
    Radio Button

“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); }
    Radio Button
    Radio Button
    Radio Button
    Radio Button
    Radio Button

Recent C Quizzes

Advertisement