New Android apps UniqueKey

Monday 6 October 2014

Print "HELLO" Without using any semicolon in C



#include
main( )  
{  
  if (printf("HELLO"))  
  {  
  }  
}  


#include<stdio.h>  
main( )  
{  
   switch (printf("HELLO"))  
   {  
   }  
}


#include<stdio.h>  
main( )  
{  
  while (!printf("HELLO"))  
  {  
  }  
}

No comments:

Post a Comment