C Programs - Hello World
I am uploading source code of few commonly used functions. The programs are written in C and I used gcc to compile and test these programs. I hope you find them useful.
As it is always the case, I am starting with hello world
#include<stdlib.h>
#include<stdio.h>
void main()
{
printf("HEllo World");
}
Comments
Post a Comment