This repository has been archived on 2021-02-16. You can view files and clone it, but cannot push or open issues or pull requests.
hello-world/c.c

8 lines
111 B
C

#include <stdio.h>
int main() {
for (int i; i < 6; i++) {
printf("Hello world, %i\n", i);
}
}