C和指针 1.3 编译

缘起

《C和指针》 1.3节

分析

编译和运行C程序的方式取决于你的os. 我安装了mingw64(其实我安装了cygwin和已经不更新了的mingw),d:\algorithm\c下有一份 test.c文件,内容如下

1
2
3
4
5
6
7
8
9
10
#include <stdio.h>
#include <string.h>

int main()
{
char a[10] = "abc", b[10]="456";
strcat(a,b);
puts(a);
return 0;
}
1
gcc test.c

同级目录下出现 a.exe, 在此目录下的cmd 执行 a.exe 即可.