摘要:
深入理解C指针之---指针类型和值 阅读全文
摘要:
若正在编辑文件,临时须要查看目录: (1)直接在底行模式下使用ls命令,完整的为:!ls 在我这里就显示如下的结果: functionpointer helloWorld.s testArray1 testPointer.c testStruct testStr... 阅读全文
摘要:
深入理解C指针之---指针含义符号 阅读全文
摘要:
1、常规的标准方式: 1 #include 2 3 struct student{ 4 int age; 5 float score; 6 char sex; 7 }; 8 9 int main(int argc, char **argv) 10 ... 阅读全文