C Language MCQ - English
Which one of the following is not a reserved keyword for C?
Home | Discussion ForumWhich one of the following is not a reserved keyword for C?
auto
case
main
default
Answer : C
View More Related Question
1) The language understood by a computer without translation is called:
2) A program written in mnemonics is called _________ program.
3) The errors that can be pointed out by the compiler are:
4) 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
5) The process of removing bugs is known as ___________.