Initial commit

This commit is contained in:
lzy
2024-03-10 16:11:35 +08:00
commit 0baf07a597
14 changed files with 132 additions and 0 deletions

BIN
Chapter1/Section2/hello Executable file

Binary file not shown.

16
Chapter1/Section2/hello.c Normal file
View File

@@ -0,0 +1,16 @@
#include <stdio.h>
#include <stdlib.h>
#if 0
void main(void);
void main(int argc, char **argv);// char *argv[]
int main(int argc, char **argv);
int main(void);
#endif
int main(void)
{
printf("Hello world!\n");
exit(0);
}