1.

Will the program compile successfully? #include<stdio.h> int main() { #ifdef NOTE int a; a=10; #else int a; a=20; #endif printf("%d n", a); return 0; }

A. Yes
B. No
Answer» B. No


Discussion

No Comment Found