This is our first post on this blog and as you know all best things begin with a hello world program and we choose the C language to do so :
#include <stdio.h> int main(int argc, char **argv) { fprintf(stdout, "Hello, World\n"); return 0; }