程序例:
#include stdlib.h
#include stdio.h
int main(void)
{
float f;
char *str = "12345.67";
f = atof(str);
printf("string = %s float = %f\n", str, f);
return 0;
}
函数名: atoi
功能: 把字符串转换成长整型数
用法: int atoi(const char *nptr);
程序例:
#include stdlib.h
#include stdio.h
int main(void)
{
int n;
char *str = "12345.67";
n = atoi(str);
printf("string = %s integer = %d\n", str, n);
return 0;
}
函数名: atol
功能: 把字符串转换成长整型数
用法: long atol(const char *nptr);
程序例:
#include stdlib.h
#include stdio.h
int main(void)
{
long l;
char *str = "98765432";
l = atol(lstr);
printf("string = %s integer = %ld\n", str, l);
return(0);
}
关于c语言基本函数名和c语言函数名称的命名规则的介绍到此就结束了 , 不知道你从中找到你需要的信息了吗 ?如果你还想了解更多这方面的信息,记得收藏关注本站 。
推荐阅读
- python爬虫requests,Python爬虫犯法么
- 拍摄图片为什么是全屏显示,拍摄的图片
- 手机版动作模组免费版游戏,动作mod
- 使命召唤手游下载,使命召唤手游下载资源不动怎么办
- vb.net取整函数 vba取整数
- python怎么使用代理池,python搭建代理
- 数据库oracle10g下载,oracle数据库下载
- 无人直播印尼,无人直播游戏
- python显示库函数的简单介绍