C Language MCQ - English
Basic MCQ Questions and Answers
Home | C Language | BasicC Programming MCQ Questions with Answers: Here learn c language objective questions and answers and test online quiz questions with answers.
1) Which of the following statements should be used to obtain a remainder after dividing 3.14 by 2.1 ?
rem = 3.14 % 2.1;
rem = modf(3.14, 2.1);
rem = fmod(3.14, 2.1);
Remainder cannot be obtain in floating point division.
Answer : C Discuss
2) What are the types of linkages?
3) Which of the following special symbol allowed in a variable name?
4) How would you round off a value from 1.66 to 2.0?
5) Is the following statement a declaration or definition?
extern int i;
6) When we mention the prototype of a function?
7) Who is father of C Language?
8) C Language developed at _________?
AT & T's Bell Laboratories of USA in 1972
AT & T's Bell Laboratories of USA in 1970
Sun Microsystems in 1973
Cambridge University in 1972
Answer : A Discuss
9) C programs are converted into machine language with the help of
10) C was primarily developed as
System programming language
General purpose language
Data processing language
None of the above.
Answer : A Discuss