文件名称:vc++ 字符串类型转为整型,char转为long,char转为int
文件大小:6KB
文件格式:RAR
更新时间:2013-09-12 11:04:32
vc++ 字符串 整型类型转换 char int
//字符串转整型
long int char2long(char* sz)
{
if (strlen(sz)==0) return 0;
long num=0,num2=0;
if(strlen(sz)<=10)
{
for (int i=0;i
【文件预览】:
test1
----test1.dsw(518B)
----test1.opt(48KB)
----test1.plg(1KB)
----test1.ncb(33KB)
----test1.cpp(492B)
----test1.dsp(4KB)