Initial commit

This commit is contained in:
lifei
2020-11-28 23:53:03 +08:00
commit c81f767014
8 changed files with 662 additions and 0 deletions

15
ch2/tips.c Normal file
View File

@@ -0,0 +1,15 @@
#include <stdio.h>
void test(int x)
{
x = 1024;
printf("test 函数内部x = %d\n", x);
}
int main()
{
int x = 1;
printf("调用 test 函数前x = %d\n", x);
test(x);
printf("调用 test 函数后x = %d\n", x);
}