Home » C Programming » C Preprocessor

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; }

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!