C Language MCQ - English
C programs are converted into machine language with the help of
Home | Discussion ForumC programs are converted into machine language with the help of
An Editor
A compiler
An operating system
None of these.
Answer : B
View More Related Question
1) Standard ANSI C recognizes ______ number of keywords?
2) A compiler is:
A machine-independent and OS-independent
Machine-dependent and OS-dependent
Machine-dependent and OS-independent
Machine-independent and OS-dependent
View Answer
3) Program error are called ___________.
4) Who is father of C Language?
5) 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.
View Answer