Discussion Forum : C Preprocessor
Question - Determine output:
#include
#define clrscr() 100
void main()
{
clrscr();
printf("%dn", clrscr());
}
Options:
A .  0
B .  1
C .  100
D .  Error
Answer: Option C
Preprocessor executes as a seperate pass before the execution of the compiler. So textual replacement of clrscr() to 100 occurs.The input program to compiler looks like this :
void main()
{
100;
printf("%d\n", 100);
}

Was this answer helpful ?
Next Question
Submit Your Solution hear:

Your email address will not be published. Required fields are marked *