C语言Ⅰ_反思 Posted on 2019-08-20 Edited on 2020-02-16 In C语言笔记 Views: Symbols count in article: 258 Reading time ≈ 1 mins. 本篇主要是记录日常训练中一些小错误及编程的好习惯,还有对错误的反思总结。 笔记 目录 [TOC] 函数内修改指针 应该传入指针的指针 指向结构体的指针 123456789101112typedef struct BTNode{ char data; struct BTNode *LeftChirld, *RightChirld, *Parent;}BTNode;typedef BTNode *LinkBinTree;int main(){ LinkBinTree *bt; // 注意运算符优先级 (*bt)->data = 'A'; // 而不是*bt->data}