皮皮学,免费搜题
登录
logo - 刷刷题
搜题
【简答题】
下列给定,函数fun()的功能是逐个比较a,b两个字符串对应位置中的字符,把ASCII值小或相等的字符依次存放到c数组中,形成一个新的字符串。 例如:a中的字符串为fshADfg,b中的字符串为sdAEdi,则c中的字符串应为fdAADf。 请改正的错误,使它能得到正确结果。 注意:不要改动main函数,不得增行或删行,也不得更改程序的结构。 试题程序: include <stdio.h> include <strinq.h> void fun(char *p,char *q,char *c) {int k=0; while(*p || *q) /**********found**************/ { if (*p<=*q) c[k]=*q; else c[k]:*p; if(*p) p++; if(*q)q++; /**+**********found**************/ k++ } } main() {char a[10]='fshADfg',b[10]='sdAEdi', c[80]={'/0'); fun(a,b,c); printf('The string a:');puts(a); printf('The string b:');puts(b); printf('The result:');puts(c); }
手机使用
分享
复制链接
新浪微博
分享QQ
微信扫一扫
微信内点击右上角“…”即可分享
反馈
参考答案:
举一反三
【单选题】—Shall we go and have a picnic at the weekend? —__________.The weather forecasts say there might be a cold front by then.
A.
Why not
B.
We can wait
C.
No,let’s not
D.
It depends
【单选题】接地体的电阻不应大于1Ω,是指综合布线的机架(柜)采用()。
A.
集中接地
B.
分散接地
C.
联合接地
D.
单独接地
【简答题】直线 与直线 的夹角余弦为
【简答题】Lucy: Shall we go to the supermarket today? I have to buy something.Herb: ______ .
【简答题】直线 与直线 的夹角的余弦( )
【单选题】—Shall we go and have a picnic at the weekend? — ______ It's said that there might be snow then.
A.
Why not?
B.
Great!
C.
Good idea!
D.
It depends.
【单选题】-Shall we go out to have dinner, Meimei? -If we go fifty-fifty , I'll go with you. [     ]
A.
go shopping
B.
go hiking
C.
go Dutch
D.
pay one hundred
【判断题】如接地体的电阻不应大于1Ω,是指综合布线的机架(柜)采用单独接地。
A.
正确
B.
错误
【单选题】– Shall we go and have a picnic at the weekend? – _____ The weather report says there might be a cold front by then.
A.
Why not?                
B.
No, let’s not.         
C.
It depends.
【判断题】如接地体的电阻不应大于 1 Ω,是指综合布线的机架(柜)采用单独接地。
A.
正确
B.
错误
相关题目:
参考解析:
知识点:
题目纠错 0
发布
创建自己的小题库 - 刷刷题