C Language MCQ - English
C was primarily developed as
Home | Discussion ForumC was primarily developed as
System programming language
General purpose language
Data processing language
None of the above.
Answer : A
View More Related Question
1) How would you round off a value from 1.66 to 2.0?
2) If Escape sequence:
3) 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
4) Which of the following is related to machine language?
5) Program error are called ___________.