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) A set of instructions which describes the steps to be followed to carry out an activity is called ______________.
2) A translator which reads an entire program written in high-level and convert it into machine language code is:
3) A program which translates a high-level language program into a machine language program is called
4) 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
View Answer
5) What will be printed after execution of the following program code?
main()
{
printf("\\nab");
printf("\\bsi");
printf("\\rha");
}