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

12
Chapter1/Section3/hello.c Normal file
View File

@@ -0,0 +1,12 @@
#include <stdio.h>
int main(void)
{
int *p = NULL;
int i;
p = (int *)malloc(sizeof(int));
if (p == NULL)
return -1;
printf("Hello world!\n");
return 0;
}