企源知识库
专业知识收录平台
用指针实现输入一个字符串,按相反次序输出其中的所有字符。
分类:
高级语言程序设计(一)(00342)
发表:2024年09月14日 06时09分34秒
作者:
admin
阅读:
(2)
用指针实现输入一个字符串,按相反次序输出其中的所有字符。
【正确答案】:输入时指针向后移动,输出时指针向前移动。 #include
main() {char a[80],*p=a,i; gets(p); for(i=strlen(p)-1;i>=0;i--)putchar(*(p+i)); }
上一篇
Summer Blues
①We students all have summer blues. It's that moment when we haven't left the house for day's and the Internet has become our closest friend. This usually takes place in the heat of summer, when we forget there's a world outside of ou
下一篇
关于薪酬结构,下列说法不正确的是( )。
Top
首页
后台登录
×
×