分类: C/C++
2008-09-08 11:42:42
函数名: atoi
功 能: 把字符串转换成长整型数
用 法: int atoi(const char *nptr);
程序例:
#include
#include
int main(void)
{
int n;
char *str = "12345.67";
n = atoi(str);
printf("string = %s integer = %d/n", str, n);
return 0;
}
----------------------------------------------------------
功能:将字符型变量转换成整数型.
原形:int x=atoi(char y)
例:
#include
#include
using namespace std;
void main()
{
char *a=”123″;