还在苦苦敲代码开发APP?你out啦! 试试积木搭建APP吧~

atol 头文件

来源:清泛原创     2016-08-29 15:53:00    人气:     我有话说( 0 人参与)

#include <stdlib>函数名:atol功能: 把字符串转换成长整型数用法: longatol(const char *nptr);程序例:#include <stdlib.h> #includ...

#include <stdlib.h>

函数名: atol
功  能: 把字符串转换成长整型数 
用  法: long atol(const char *nptr); 

实例:
#include <stdlib.h> 
#include <stdio.h> 

int main(void) 
{ 
   long l; 
   char *lstr = "98765432"; 

   l = atol(lstr); 
   printf("string = %s integer = %ld\n", lstr, l); 
   return(0); 
} 

atol 头文件

注:本文为本站或本站会员原创优质内容,版权属于原作者及清泛网所有,
欢迎转载,转载时须注明版权并添加来源链接,谢谢合作! (编辑:admin)
分享到: