c语言的算法设计中,经常会需要用到字符串,而由于c语言中字符串并不是一个默认类型,其标准库stdlib设计了很多函数方便我们处理字符串与其他数值类型之间的转换。
首先放上一段展示各函数使用的代码,大家也可以copy到自己的机器上运行观察
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[]) {
int num=183;
char str[3];
//itoa函数将整型转换为字符串数值类型
itoa(num,str,10);
printf("%s\n",str);
//atoi函数将字符串转化为整形数值类型
int nums=at