首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
以下程序 #include<stdio.h> #include<string.h> main() { char*pl="abc",*p2="ABC",str[50]="xyz"; strcpy(str+2,strcat(
以下程序 #include<stdio.h> #include<string.h> main() { char*pl="abc",*p2="ABC",str[50]="xyz"; strcpy(str+2,strcat(
admin
2010-05-22
29
问题
以下程序 #include<stdio.h> #include<string.h> main() { char*pl="abc",*p2="ABC",str[50]="xyz"; strcpy(str+2,strcat(p1,p2)); printf("%s\n",str); } 的输出是________。
选项
A、xyzabcABC
B、zabcABC
C、yzabcABC
D、xyabcABC
答案
8
解析
strcat(p1,p2)将字符串abcABC放到了*p1所指向的存储单元中;strcpy在本题将abcABC复制到str+2所指向的存储单元中,即覆盖原str数组中的字符z及其后的所有字符,故str的值为“xyabcABC”。
转载请注明原文地址:https://jikaoti.com/ti/vzI0FFFM
本试题收录于:
二级C语言题库NCRE全国计算机二级分类
0
二级C语言
NCRE全国计算机二级
相关试题推荐
在下面语句或函数中,不能描述选择结构的是
以下程序的功能是随机产生10个两位的整数:OptionBase1PrivateSubCommand1_Click()Dima(10)AsInteger,iAsIntegerRandomize
编写如下程序:PrivateSubCommand1_Click()DimmAsInteger,nAsIntegerm=2:n=1SelectCasemCase1SelectC
VisualBasic中的“启动对象”是指启动VisualBasic应用程序时,被自动加载并首先执行的对象。下列关于VisualBasic“启动对象”的描述中,错误的是()。
数据库系统的核心是
已知在4行3列的全局数组score(4,3)中存放了4个学生3门课程的考试成绩(均为整数)。现需要计算每个学生的总分,某人编写程序如下:OptionBase1PrivateSubCommand1_Click()DimsumAsInteg
窗体上有1个名称为Command1的命令按钮;1个名称为List1、没有列表项的列表框。编写如下程序:PrivateSubCommand1_Click()DimxAsString,sAsString,tempAsStringDim
随机试题
我国明确生产者、销售者的产品质量责任和义务的法律为()。
制方中蕴含"扶土抑木"原理的方剂是
A.黄芩、蔓荆子B.柴胡、川芎C.吴茱萸、藁本D.葛根、白芷E.羌活、川芎
企业把整个市场看作一个大的目标市场,只向市场推出单一的标准化产品,并以统一的营销方式销售。这种市场覆盖策略是()。
下列程序的输出结果是()。#include<stdio.h>main(){inta=4;printf("%d\n",(a+=a-=a*a));}
SpareTiresCanFly!BYJAMESWESTToronto-OmiyaMotorsannouncedonMarch10thatitwilllaunchavoluntarysafetyrecallin
Completethenotesbelow.WriteONEWORDAND/ORANUMBERforeachanswer.SouthCityCyclingClubExampleNameofclubsecretary
Itisclearthatwearerapidlybecomingaglobalculture.Newformsofinformationtechnology,intercontinentaltravel,andthe
ChinaistosenditstopnegotiatoronNorthKorea’snuclearprogramtoPyongyang(36)amidinternationalconcernoverthelaunc
MechanicalEngineerWantedBigsafeMultinationalIndustrialCorporationisseekingqualifiedindividualforchallengingposit
最新回复
(
0
)