字符串与整型浮点转换atoi,atof

字符串与整型浮点转换atoi,atof

#include 
#include 

int main(int argc,char** argv)
{
	
	int i;
	float f;
	char buf[128]={0};

	//atoi  字符串转换成整型
	//atof  字符串转换成浮点型
	i=atoi("123");
	f=atof("98.5");
	printf("i=%d,f=%5.2f",i,f); 
	printf("\n————————\n");
	//strtok()  分割字符串
	//sprintf()  将整型或者浮点型转换成字符串拼接到buf中
	sprintf(buf,"%d %5.2f\n",i,f);
	puts(buf);
	system("pause");
}

你可能感兴趣的:(字符串与整型浮点转换atoi,atof)