C
Programming and Technical
output?
#define clrscr() 100
main()
{
clrscr();
printf("%dn",clrscr());
}
A. 100
Explanation: 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 :
main()
{
100;
printf("%dn",100
Read Solution (Total 0)
C Other Question