Home / Programming Questions / C Programming MCQs / Page 1
Dear candidates you will find MCQ questions of C Programming here. Learn these questions and prepare yourself for coming examinations and interviews. You can check the right answer of any question by clicking on any option or by clicking view answer button.
Share your questions by clicking Add Question
A
Q. What is the first stage of compilation of a C program?
A
Q. What is a standard library function to read 1 char at a time?
A
Q. What is the value of character constant 'A' of ASCII character set?
A
Q. Which of the following is the correct output for the program given below?
#include <studio.h> int main () { int a = 40, b = 50, c = 10, x; x = a < b < c; printf("%d\n", x); return 0; }
A
Q. What is the range of a signed char variable in C?
A
Q. Which of the following is the correct output for the program given below?
#include <stdio.h> int main ( ) { float floatvalue = 8.25; printf ("%d\n " , (int) floatvalue); return 0; }
A
Q. Which of the following is valid range of long double ?
A
Q. Which of the following is the correct datatype for the variable n in the statement given below? n = 35.29 ;
Don't have account? Register here.