You are here

C - Hello World

#include <stdio.h>
 
int main()
{
    printf("hello world!");
 
    return 1;
}