首页
编程
java
php
前端
首页
编程
java
php
前端
C语言数组初始化的合法与不合法
int a[4]={1,2,3,};合法吗?
合法.这根一维类似.int a[]={1,2,3,4,5}; 合法int b[][3]={1,2,3,4,5};同理也合法.
点击展开全文