Skip to content

Instantly share code, notes, and snippets.

@LokeshKumarES
Created September 13, 2018 14:37
Show Gist options
  • Save LokeshKumarES/08c706fc1d2a9098449f46427039c6ed to your computer and use it in GitHub Desktop.
Save LokeshKumarES/08c706fc1d2a9098449f46427039c6ed 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();
}
@LokeshKumarES
Copy link
Author

Hello World
Welcome to EASTER SCIENCE

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment