我想使用string
函数将int
转换为CInt
,但它只能将字段转换为int32
,如果我的字段大于value is either too large or too small for an int32
,我收到这个错误:
int64
如何在Telerik Reporting中使用#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main()
{
char* p;
p = (char*)malloc(0);
scanf("%s", p);
printf("%s", p);
free(p);
}
转换?
答案 0 :(得分:0)
使用CLng
返回64位整数(Long
)
答案 1 :(得分:0)
我非常确定Telerik Reports支持C#转换,所以只需要执行Convert.ToInt64(参数/值)即可。