A C Program to learn how to Print hello world.

In this post we are going to take a look on a simple C program that will teach us how to print something in C console.I have also pasted a video tutorial.Check it out and if u have any problem then don't hesitate to comment.

Now let's code it

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

Video Tutorial:

Comments