C program to print hello world without using semicolon.

#include<stdio.h>
int main( )
{
      if( printf("Hello world")){ }

      return 0;

}




Post a Comment

0 Comments