C Programming - MCQ Practice Questions
Practice free C Programming multiple-choice questions with detailed answers and explanations. Perfect for competitive exam preparation.
978 questions | 100% Free
Which of the following is NOT a fundamental data type in C?
What is the size of an 'int' variable in a 32-bit system?
Which variable declaration is correct in C?
What will be the output of the following code? int x = 5; float y = x; printf("%f", y);
Which of the following occupies maximum memory in a 64-bit system?
What is the range of unsigned int in a 32-bit system?
Which keyword is used to declare a variable that cannot be modified?
What is the difference between 'static' and 'extern' variables?
What is the output of the following code? int x = 10; int *p = &x; printf("%d", *p);
Which of the following is a derived data type in C?
What will be the size of the following structure? struct test { char c; int i; float f; };
Which variable storage class has default initialization to 0?
What is the output of this code? float x = ; printf("%f", x);
How many bits are used to store a 'short int' in a standard C environment?
What happens when you declare a variable without initializing it?
Which of the following correctly demonstrates pointer arithmetic?
What is the output of the following code? int a = 5; int *p = &a; int q = &p; printf("%d", q);
Which data type is most suitable for storing a decimal number with high precision?
What is the range of values for a signed char in C?
Which keyword is used to modify a variable so that it cannot be changed?