Which of the following ` C ` statement is syntactically correct
Array can be initialized, provided they are
A pointer is a ____________
The getch() function in ` C ` is ___________
Which one of the following variable name is NOT a valid name?
How do you include a system header file called stdio.h in a ` C ` source file?
Which element of the array does the expression num[4] references, where ` num ` is a name of array?
Every recursive version has an equivalent (but possibly more or less complex) iterative version, and vice versa: validate this statement.
The general form of printf statement is
Any ` C ` statement always ends with a
20. Which statement(s) is used to terminate the current loop immediately and transfer control to the statement immediately following that loop ?
Which of the following is FALSE in C?
Values of data items of types int, float, char are displayed by writing ________________ in printf statement in C
Which of the following operator is used to write expressions in ` C ` ?
Which among the following is not a structured data type in C?
In ` C ` , Arithmetic instruction cannot contain
How will you write comment in a ` C ` Program?
Difference between ` while ` and ` do-while'
To avoid the repetition of same code we are using______.
Number of functions that might be called in a ` C ` program is _________.
void main()
{
int a=12,b=12;
if(a==b)
printf(“a and b are equal”);
}
What will be the output of the sample code shown above?
To avoid the repetition of same code we are using______.
The control statement that allows us to make a decision from number of choices is called _____
The break statement is used to exit from?
A case in ` switch ` statement is terminated by ________ if control should not fall through the successive cases.