Q. What is the output of this program?
Code:#include <stdio.h>
#define clrscr() 17
int main()
{
clrscr();
printf("%d",clrscr());
return 0;
}
β
Correct Answer: (A)
17
#include <stdio.h>
#define clrscr() 17
int main()
{
clrscr();
printf("%d",clrscr());
return 0;
}
You must be Logged in to update hint/solution