Alessandro Bonazzi
e075990ed3
Files correlati : Commento : Aggiunto il preprocessore c++ mcpp per sostituire il compilatore nella compilazione delle maschere.
12 lines
157 B
C
12 lines
157 B
C
/* e_14_9.c: Out of range in #if expression (division by 0). */
|
|
|
|
/* 14.9: Divided by 0. */
|
|
#if 1 / 0
|
|
#endif
|
|
|
|
int main( void)
|
|
{
|
|
return 0;
|
|
}
|
|
|