Answers for "Choose a correct form of using C Conditional Compilation commands IF ELSE .?"

C
0

conditional compilation in c

#ifdef  macro1
printf( "Hello!n" );
#endif

#ifndef  macro2
printf( "Hello!n" );
#endif

#ifdef  macro3
printf( "Hello!n" );
#endif
Posted by: Guest on August-07-2020

Code answers related to "C"

Browse Popular Code Answers by Language