码迷,mamicode.com
首页 > 编程语言 > 详细

C语言 atol

时间:2020-02-28 20:27:06      阅读:79      评论:0      收藏:0      [点我收藏+]

标签:long   warning   cli   secure   warnings   oid   alt   click   crt   

C语言 atol

功能:将一个字符串转化为long类型

案例

技术图片
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <math.h>
#include <time.h>

int main(void)
{
    // 字符类型
    // char ch[] = " -123456abc"; 只会打印数字、非数字停止
    char ch[] = "  -12.3456";
    // 转换类型
    long i = atol(ch);
    // 转换为long类型
    printf("%d\n", i);
    return 0;
}
atol 使用案例

 

C语言 atol

标签:long   warning   cli   secure   warnings   oid   alt   click   crt   

原文地址:https://www.cnblogs.com/xiangsikai/p/12378600.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!