dev/bash/gedit/hello.c

8 lines
100 B
C

#include <stdio.h>
int main(int argc, char * argv[]) {
printf("Hello, C-coder!\n");
return 0;
}