Codes & Scripts
Pages
(Move to ...)
Home
▼
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")) { }
}
‹
›
Home
View web version