摘要: 这里我借用一下《POINTERS ON C》中8.8问题。 问题如下: 8. 下面的声明取自某个原文件: int a[10]; int *b = a; 但在另一个不同的源文件中,却发现了这样的代码: extern int *a; extern int b[]; int x, y; ... x = a 阅读全文
posted @ 2019-03-10 14:53 BMing 阅读(228) 评论(0) 推荐(0)