[C / C ]Hello World

First post programming C / C ++

#include<stdio.h>
int main()
{
    printf("Hello world");
    return 0;
}