Hello world in C - Basic C Programming

Breaking

BANNER 728X90

Monday, December 12, 2016

Hello world in C

Source code

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

Once you compile it , it will print Hello World in the terminal.

No comments:

Post a Comment