Saturday, October 9, 2010

Hello World in C without using semicolon


/**
  * C program to print "Hello World" without using semicolon
  */

#include <stdio.h>

void main(void)
{
  if(printf("Hello World\n")) {}
}

No comments:

Post a Comment