anildigital / hello-world forked from leachim6/hello-world

Hello world in every programming language

This URL has Read+Write access

hello-world / c.c
100644 7 lines (5 sloc) 0.075 kb
1
2
3
4
5
6
7
#include<stdio.h>
 
int main(void) {
printf("Hello World\n");
return 0;
}