Alessandro Bonazzi
e075990ed3
Files correlati : Commento : Aggiunto il preprocessore c++ mcpp per sostituire il compilatore nella compilazione delle maschere.
16 lines
234 B
C
16 lines
234 B
C
/* e_16.c: Trailing junk of #else, #endif. */
|
|
|
|
/* 16.1: Trailing junk of #else. */
|
|
#define MACRO_0 0
|
|
#if MACRO_0
|
|
#else MACRO_0
|
|
|
|
/* 16.2: Trailing junk of #endif. */
|
|
#endif MACRO_0
|
|
|
|
main( void)
|
|
{
|
|
return 0;
|
|
}
|
|
|