summaryrefslogtreecommitdiff
path: root/src/c/hello-c/hello.c
blob: 4aff0956003f257ab532e1114cac63bad10ccf6d (plain)
1
2
3
4
5
6
7
8
9
#include <stdio.h>

int
main()
{
    printf("Hello C\n");

    return 0;
}