Shell 命令
基本shell命令
tab键可以进行代码补全, / 是根目录, ~是用户目录
cd 目录名
ls
pwd
clear
cd ..
mkdir day01
touch demo1.cpp
vim demo1.c
i 是进入编辑状态; 编辑完毕后按esc ; 输入 :wq保存退出
cat demo1.c
gcc -o demo1 demo1.c
g++ -o 源文件名 编译源文件
./demo1
rm -f hello.c
mv demo1.cc demo2.c
mv demo2.c /Users/ericli/CLionProjects/houjiheng/demo2.c
cp demo2.c /Users/ericli/CLionProjects/houjiheng/demo2.c
函数的返回值是指针
#include <stdio.h>
int a = 10;
int * getA(){
return &a;
}
int main() {
int b = 100;
int *p;
p = &b;
*p = 888;
printf("b = %d \n", b);
*(getA()) = 666;
printf("a = %d \n", a);
return 0;
}
|