tags:

views:

68

answers:

1
#include<stdio.h>
#include<conio.h>
void main()
{
   if(0xA)
     if(052)
       if('\xeb')
         if('\012')
            printf("tom hanks");
         else;
       else;
     else;
   else;
}
A: 

It won't compile.

Alexander Rafferty
why? it compiles fine
Vladimir
Never seen a blank else statement, seems unnecessary.
Alexander Rafferty
@Alex ...as if the rest of the code is completely logical and absolutely necessary to print `tom hanks`
Amarghosh