以下函数实现的功能是( )。void fun (char *s){ char *p,*q, temp; p=s; q=s+ strlen(s)-1; while(p<q) { temp=*p; *

admin2009-01-15  19

问题 以下函数实现的功能是(    )。void fun (char *s){    char *p,*q, temp;    p=s;    q=s+ strlen(s)-1;    while(p<q)    {       temp=*p;       *p=*q;       *p=temp;       p++;       q--;    }}

选项 A、将一个字符串首尾颠倒
B、计算字符串的长度
C、统计字符串中的空格个数
D、将字符串中的小写字母变成大写字母

答案1

解析
转载请注明原文地址:https://kaotiyun.com/show/lNkp777K
0

相关试题推荐
最新回复(0)