摘要:
记一些让我直呼内行的point。 12.17 1 //用typedef避免反复写长串定义 2 typedef char* (*MY_P)(char* , char* ); 3 MY_P _swap; 4 _swap(s1,s2); 1 //神奇的指针 2 char* p; 3 switch(opt) 阅读全文
posted @ 2020-12-17 11:34
qwertaya
阅读(186)
评论(1)
推荐(0)
OIIIIIIII