https://kloeckner.com.ar
repos/
c-first-steps
C repository playground
Commits
Files
Refs
README
the-c-programming-language
/helloworld.c (8 lines)
Line numbers
raw
1
#include <stdio.h>
2
3
int main(void) {
4
5
printf("Hello world!\n");
6
7
return 0;
8
}