1 / 4
The conditional compilation
AIt is taken care of by the compiler
BIt is setting the compiler option conditionally
CIt is compiling a program based on a condition
Dnone of above
Answer: Option D
Explanation:Here is no explanation for this answer
Workspace
2 / 4
In the command scanf, h is used for
AShort int
Bint
Cshort unit
DNone of these
Answer: Option A
Explanation:Here is no explanation for this answer
Workspace
3 / 4
what is the correct prototype of printf function ?
Aprintf(char *p,...);
Bprintf(const *char *p,...);
Cprintf(const char *p,...);
Dprintf(const *char p,...);
Answer: Option C
Explanation:Here is no explanation for this answer
Workspace
4 / 4
What is the output of the following 'C' program ?
#include
int main()
{
printf( printf ("world") );
}
Aprints world
Bprints printf ("world")
Cprints nothing
Dcompiler error
Answer: Option D
Explanation:Here is no explanation for this answer
Workspace