C Language MCQ - English
Is the following statement a declaration or definition?
extern int i;
Declaration
Definition
Function
Error
Answer : A
View More Related Question
1) Which of the following is not one of the processes that a high-level language program must go through before it is ready to be executed?
2) Binary number uses only ________ digits.
3) A sequence of instructions, in a computer language, to get the desired result is known as:
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) Standard ANSI C recognizes ______ number of keywords?