VARIOUS

Hello world!

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;
}

Leave a Reply

Your email address will not be published. Required fields are marked *