gcc-you can use this code to learn something about gcc, and inquire further into linux,

源代码在线查看: array1.c

软件大小: 30471 K
上传用户: wwangllei
关键词: something gcc-you further inquire
下载地址: 免注册下载 普通下载 VIP

相关代码

				// Test that completing an array declared with a typedef doesn't change				// the typedef.								// { dg-do run }								typedef int iArr[];								const iArr array4={				  1, 2, 3, 4				};								const iArr array3={				  1, 2, 3				};								const iArr array5={				  1, 2, 3, 4, 5				};								int main()				{				  if (sizeof (array4)/sizeof (array4[0]) != 4				      || sizeof (array3)/sizeof (array3[0]) != 3				      || sizeof (array5)/sizeof (array5[0]) != 5)				    return 1;				}							

相关资源