Changes

Cmake

178 bytes added, 11:41, 9 February 2014
no edit summary
return 0;
}
</source>
 
after create your main.c file compile it with gcc as:<br>
<source lang="bash">
gcc main.c -o hello_world
</source>
 
and execute it with<br>
 
./hello_world<br>
 
hello world<br>