有以下程序 #include int fun( char s[]) { int n=0; while(*s =’0’) { n=10*n+*s-’0’ ; s++; } return (n); } main() { char s[10]={ ’6’, ’

admin2020-07-28  21

问题 有以下程序
#include
int fun( char s[])
{ int n=0;
while(*s <= ’9’&&*s >=’0’) { n=10*n+*s-’0’ ; s++; }
return (n);
}
main()
{ char s[10]={ ’6’, ’1’, ’*’, ’4’, ’*’, ’9’, ’*’, ’0’, ’*’};
printf("%d\n",fun(s));
}
程序的运行结果是( )。

选项 A、61
B、61490
C、9
D、5

答案A

解析 函数fun()的功能是输出字符数组s中第一个非数字字符前的数字,所以答案选A。
转载请注明原文地址:https://kaotiyun.com/show/vE3p777K
0

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