IT How Tos

Home

About

Sitemap

Contact

Hello World C

This page will explain how to create a simple “Hello World” program in C.

Syntax

#include
using namespace std;

int main()
{
cout << "Hello, World!";
return 0;
}

Compiling the code

The Ouput

Hello World!