1、字符串转数值
#include <stdlib.h> #include <stdio.h> void main( void ) { char a[100]="0023200"; long b=strtol(a,NULL,10); printf("%ld",b); }