Below C program will print “Hello World” without using semi colon. This program displays hello world and then returns 11 ( the length of the string “hello world” )
#include <stdio.h> int main() { if(printf("Hello World")) { } }
Output:
Hello World
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Output:
Hello World