Showing posts with label Hello World. Show all posts
Showing posts with label Hello World. Show all posts

Friday, 23 June 2017

Hello World program without using any semi colon in C

Question: Write the hello world program . . . Without using any semi-colon's ";" ?
Answer:

#include <stdio.h>

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