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")) { }
}

No comments:

Post a Comment