摘要:
Most networking discussions are a jumble of acronyms. Forget the configuration details — what are the insights? Networking is about communicationT... 阅读全文
摘要:
数组指针(也称行指针) 定义 int (*p)[n]; ()优先级高,首先说明p是一个指针,指向一个整型的一维数组,这个一维数组的长度是n,也可以说是p的步长。也就是说执行p+1时,p要跨过n个整型数据的长度。 如要将二维数组赋给一指针,应这样赋值: int a[3][4]; int (*p... 阅读全文