atol 头文件

清泛原创
#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 头文件

分享到:
评论加载中,请稍后...
创APP如搭积木 - 创意无限,梦想即时!
回到顶部