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