设 struct t { int a; float b; char c[10]; } x[2]={{1 , 6.6 , "Dollar" } , { 2 , 9.8 , "Pound" } } ; 则执行语句printf("%d , %s", x[1].a, x[1].c);后输出结果是
A.1,Dollar B.2,Dollar C.1,Pound D.2,Pound正确答案D
设 struct t { int a; float b; char c[10]; } x[2]={{1 , 6.6 , "Dollar" } , { 2 , 9.8 , "Pound" } } ; 则执行语句printf("%d , %s", x[1].a, x[1].c);后输出结果是
A.1,Dollar B.2,Dollar C.1,Pound D.2,Pound正确答案D