【简答题】我国工频电的频率是 Hz,周期是 ms。
【单选题】下列各项中,不属于企业经营活动项目的是 ( )。
【单选题】以下程序的输出结果是 #include<stdio.h> struct st { int x;int *y;}*p; int dt[4]={10,20,30,40}; struct st aa[4]={50,&dt[0],60,&dt[0],60,&dt[0],60,&dt[0],}; main() { p=aa; printf('%d/n',++(p->x));}
【简答题】以下程序运行后的输出结果是______。 struct NODE { int hum; struct NODE *next; }; main ( ) { struct NODE s[3]={{1, /0 },{2, /0 },{3, /0 }},*p,*q,*r; int sum=0: s[0].next=s+1; s[1].next=s+2; s[2].next=s: p=s; q=p->nex...
【单选题】有以下程序 #include #include struct S { char name[10]; }; main() { struct S s1, s2; strcpy(s1.name, "XXX"); strcpy(s2.name, "="); s1 = s2; printf("%s\n", s1.name); } 程序运行后的输出结果是 ______ 。
【单选题】有以下程序 #include #include struct S { char name[10]; }; void change(struct S *data, int value) { strcpy(data->name, "#"); value = 6; } int main( ) { struct S input; int num = 3; strcpy(input.name, "...