#Hello World in C

<div class="text-success lead">
C is the more classic and popular programming language that as ever existed. Developed in 1972 by Dennis Ritchie at the Bell Telephone Laboratories is the
language used by Linus Torvals and the huge GNU community to create Linux itself and the most famous programs ever developed in the IT history
</div>

<img src="./c.jpg"/>

The king of C compiler, the GNU GCC, is installed by default on the [Arietta](/arietta) 
microSD so you can compile directly on the board your sources.

To try it save the following example on a microSD folder with the name <b>hello.c</b>.

<pre class="prettyprint">
#include "stdio.h"
 
int main(void) {
  printf("Hello world !\n");
  return 0;
}
</pre>

Compile it typing:

<pre class="prettyprint">
~# gcc hello.c -o hello
</pre>

Then lauch it typing:

<pre class="prettyprint">
~# ./hello
Hello world !
</pre>

#Related links

<ul>
<li><a href="http://en.wikipedia.org/wiki/C_language">Wikipedia definition</a></li>
<li><a href="http://gcc.gnu.org/onlinedocs/">GCC manual</a></li>
<li><a href="http://en.wikipedia.org/wiki/The_C_Programming_Language_%28book%29">The C Programming Language by Dennis M. Ritchie and Brian Kernighan</a></li>
</ul>


