【文件属性】:
文件名称:计算机等级考试二级c语言试题
文件大小:1.32MB
文件格式:RAR
更新时间:2012-09-28 14:55:35
c语言 试题 二级 自学考试数据结构
全国计算机考试二级c语言试题
#include
#include
#include
#define N 9
long ctod( char *s )
{ long d=0;
while(*s)
if(isdigit( *s)) {
/**********found**********/
d=d*10+*s-'0';
/**********found**********/
*s++; }
return d;
}
long fun( char *a, char *b )
{
/**********found**********/
return *a+*b;
}
main()
{ char s1[N],s2[N];
do
{ printf("Input string s1 : "); gets(s1); }
while( strlen(s1)>N );
do
{ printf("Input string s2 : "); gets(s2); }
while( strlen(s2)>N );
printf("The result is: %ld\n", fun(s1,s2) );
}