C Language quiz and interview questions

Comprehensive C language quiz and questions from basic to advanced level that help you to review your C language knowledge and become the master of C language. Please read the following question carefully and select the correct anwser, you have to make your choice before going to the next question.

Hot and trending quiz topics for C Language

Quiz 1

C quiz with data types. control flow, method and programming skills

Recent added questions

  • Which of the following identifiers is a legal identifier?

  • Which of the following identifiers is a legal identifier:

  • Which of the following identifiers is a legal identifier :

  • What is the output of the following piece of code?

    int  x = 3, y = 5, z ;
    z = x++ + ++y;
    printf(“%d”,z);

     

  • What is the output of the following piece of code?

    int  x = 3, y = 5, z;
    z = x + ++y;
    printf(“%d”,z);

     

  • What is the output of the following piece of code:

    int  x = 3, y = 5, z;
    z = ++x + ++y;
    printf(“%d”,z);

     

  • To print character a:

  • To write the ASCII code of char ch=’x’;

View all C Language quiz questions

© 2017 QuizBucket.org