有以下程序#include #include void fun(int *p1,int *p2,int *s){s=(int*)malloc(sizeof(int));*s=*p1+*p2;free(s);}main(){inta=1,b=40,*q=&a;fun(&a,&b,q);printf("%d\n",*q);}程序运行后的输出结果是()
查看答案
以下叙述中错误的是()
A. 可以用typedef说明的新类型名来定义变量
B. typedef说明的新类型名必须用大写字母,否则会出编译错误
C. 用typedef可以为基本数据类型说明一个新名字
D. 只要类型相同,结构体变量之间可以整体赋值
有以下程序#include struct ord{int x,y;}dt[2]={1,2,3,4};main(){struct ord *p=dt;printf("%d,",++p->x);printf("%d,",++p->y);}程序的运行结果是( )
A. 1,2
B. 2,3
C. 3,4
D. 4,1
下列结构体的定义语句中,错误的是()
A. struct ord{int x;int y;int z;};struct ord a;
B. struct ord{int x;int y;int z;}struct ord a;
C. struct ord{int x;int y;int z;}a;
D. struct {int x;int y;int z;}a;
有以下程序,程序运行后的输出结果是( )#include #include structA{inta;charb[10];doublec;}struct A f(struct A t);main(){structA a={1001,"ZhangDa",1098.0};a=f(a);printf("%d,%s,%6.1f\n",a.a,a.b,a.c);}struct A f(struct A t){t.a=1002;strcpy(t.b,"ChangRong");t.c=1202.0;return t;}
A. 1001,ZhangDa,1098.0
B. 1022,ZhangDa,1202.0
C. 1001,ChangRong,1098.0
D. 1002,ChangRong,1202.0