二级二级C2009年9月计算机二级考试C语言真题
题目内容

有以下程序#include <stdio.h>#include <string.h>struct A{ int a;char b[10];double c;};struct A f(struct A t);main(){ struct A a={1001,"ZhangDa",1098.0};   a=f(a); printf("%d,%s,%6.1fn",

2024-07-09

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.1002,ZhangDa,1202.0

C.1001,ChangRong,1098.0

D.1002,ChangRong,1202.0

题目答案

试卷相关题目

最新试卷
热门试卷

长理培训客户端 资讯,试题,视频一手掌握

去 App Store 免费下载 iOS 客户端