最終更新 1 month ago

C语言版helloworld

shumengya revised this gist 1 month ago. Go to revision

1 file changed, 6 insertions

hello.c(file created)

@@ -0,0 +1,6 @@
1 + #include <stdio.h>
2 +
3 + int main(int argc, char *argv[]) {
4 + printf("Hello, World!\n");
5 + return 0;
6 + }
Newer Older