-
有以下程序段
struct st
{ int x; int *y; } *pt;
int a[]={1,2}, b[]={3,4}
日期:1970-01-01 08:00:00
点击:6017
好评:0
...
-
有以下程序
#include
struct S{ int a; int *b;};
main()
{
日期:1970-01-01 08:00:00
点击:6016
好评:0
...
-
有以下程序
#include
struct ord
{ int x,y; } dt[2]={1,2,3,4};
main()
{
st
日期:1970-01-01 08:00:00
点击:6019
好评:0
...
-
有以下程序:
#include
struct S
{ int a, b; } data[2]={10,100,20,200};
日期:1970-01-01 08:00:00
点击:6019
好评:0
...
-
有以下定义
struct person { char name[10]; int age; };
struct person class[10]={
日期:1970-01-01 08:00:00
点击:6017
好评:0
...
-
有以下程序
#include
main()
{ struct cm{ int x; int y; } a[2]={4,3,2,1 };
日期:1970-01-01 08:00:00
点击:6032
好评:0
...
-
有以下程序
#include
struct tt
{ int x; struct tt *y; } s[2]={ 1,0,2,0};
main(
日期:1970-01-01 08:00:00
点击:6025
好评:0
...
-
有以下程序
#include
struct tt
{ int x; struct tt *y; } s[3]={ 1,0,2,0,3,0};
m
日期:1970-01-01 08:00:00
点击:6028
好评:0
...
-
有以下程序
#include
struct S
{
int x, y;
};
main( )
{
struct S dat
日期:1970-01-01 08:00:00
点击:6054
好评:0
...
-
设有定义:int x[10],*p=x,i;,若要为数组x读入数据,以下选项正确的是
日期:1970-01-01 08:00:00
点击:6157
好评:0
...