如何 将数字字符串 转换为整数
发布网友
发布时间:2022-04-06 01:53
我来回答
共1个回答
热心网友
时间:2022-04-06 03:23
#include<stdio.h>
#include<string.h>
long fun(char *p) //返回值类型没有给你变
{
long temp; //你的返回要long型的,所以定义个long型的
temp=atol(p); //atol是string.h中包含的一个方法,把字符串转成long
return temp; //返回temp
}
main()
{char s[6];
long n;
printf("Enter a string:\n");
gets(s);
n=fun(s);
printf("%1d\n",n);
}