Will the program compile successfully?
#include
int main()
{
#ifdef NOTE
int a;
a=10;
#else
int a;
a=20;
#endif
printf("%d\n", a);
return 0;
}
Answer: A
No answer description available for this question.