C Language MCQ - English
Which one of the following is not a valid identifier?
_study2online
1study2online
study2online
study2online1
Answer : B
View More Related Question
1) What will be printed after execution of the following program code?
main()
{
printf("\\nab");
printf("\\bsi");
printf("\\rha");
}
2) Find the output of the following program.
void main()
{
int i=01289;
printf("%d", i);
}
3) The name given to a sequence of instructions in a computer language to get the desired result is:
4) Program error are called ___________.
5) Which of the following is not true about an interpreter?
Interpreter generates an object program from the source program
Interpreter is a kind of translator
Interpreter analysis each source statement every time it is to be executed
None of the above
View Answer