Thursday 31 August 2017

First C Program – Print Hello World Message

We have gained lots of theoretical knowledge. Now its time to move on and write our first C program to print hello world message and understand it. It is the very first program that most of the people write when start learning any language.

Hello World C Program:

This is a program to print “Hello World” message on screen.

#include<stdio.h>
void main()
{
printf("Hello World");
}

0 comments:

Post a Comment

Tech UOG