C Language MCQ - English
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
View More Related Question
1) When we mention the prototype of a function?
2) A translator which reads an entire program written in high-level and convert it into machine language code is:
3) The process of removing bugs is known as ___________.
4) The part of a machine level instruction, which tells the central processor what has to be done, is:
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