C Language MCQ - English
Who is father of C Language?
Bjarne Stroustrup
James A. Gosling
Dennis Ritchie
Dr. E.F. Codd
Answer : A
View More Related Question
1) The mapping from assembly language instructions into machine language instruction is:
2) 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
3) Find the output of the following program.
void main()
{
int i=065, j=65;
printf("%d %d", i, j);
}
4) C compiler traps:
5) The part of a machine level instruction, which tells the central processor what has to be done, is: