設
structstudent
{
第3頁
intno;
charname[12];
floatscore[3];
}s1,*p=&s1;
用指針法給s1的成員no賦值1234的語句是____________。
p->no=1234 ;或者 (*p).no=1234;
暫無解析
正確的C語言用戶自定義標識符是()
設intx[]={1,2,3,4,5,6},*p=x;則值為3的表達式是()
以下程序的功能是用選擇法對數組a中的整數由小到大進行排序。
執行下列程序()
后輸出的結果是()
設inta[2][3]={{2},{3}};則數組元素____________的值為3。