Skip to content

Instantly share code, notes, and snippets.

@LokeshKumarES
Created September 13, 2018 14:37
Show Gist options
  • Save LokeshKumarES/6690712433d6105cd31473ec8ef0841b to your computer and use it in GitHub Desktop.
Save LokeshKumarES/6690712433d6105cd31473ec8ef0841b to your computer and use it in GitHub Desktop.
Write a C program to print hello world.
#include<stdio.h>
void main()
{
printf("Hello World\n");
printf("Welcome to EASTER SCIENCE");
getch();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment