Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 372 Bytes

0.md

File metadata and controls

17 lines (12 loc) · 372 Bytes

c++ 使用

system("pause");

C语言使用

getchar();

int *a 让a成为指针 (*a)为指针指向的具体内容,即变量 例如传参swap(3,5),就是令 *a=3, *b=5. 因为若在函数内改变外部数字,只能用指针表示,否则传不出来

编译

gcc array_1.c gcc array_1.c -std=c99 www.cnblogs.com/yhjoker/p/7533438.html