Skip to content

Instantly share code, notes, and snippets.

@snadahalli
Created August 2, 2013 06:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save snadahalli/6137859 to your computer and use it in GitHub Desktop.
Save snadahalli/6137859 to your computer and use it in GitHub Desktop.
/*Program for hello world without using Semicolon */
/***********************************************************
* You can use all the programs on www.c-program-example.com
* for personal and learning purposes. For permissions to use the
* programs for commercial purposes, contact info@c-program-example.com
* To find more C programs, do visit www.c-program-example.com
* and browse!
* Happy Coding
***********************************************************/
#include <stdio.h>
int main() {
if(printf("Hello World")) {
/*
* It prints Hello World and returns the
* value 11 i.e Length of the String
*/
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment