使用unsigned long long int的函数的结果不正确

时间:2012-09-16 17:26:30

标签: c unsigned-long-long-int

以下是我在c

中输入的代码
unsigned long long int Je=23; 
int col=2,row=2; 
void mod(unsigned long long int mat1[][col],unsigned long long int mat2[][col],int r) 
{
    int i,j;
    for(i=0;i<r;i++)
        for(j=0;j<col;j++)
        {
            mat1[i][j]=mat2[i][j]%Je;
            printf("Value mat1=%u mat2=%u Je=%u\n",mat1[i][j],mat2[i][j],Je);
        } 
}

我用以下矩阵

调用此函数
t1[2][2]={1036,1090,1526,1472};
mod(t2,t1,row);

但是在控制台屏幕中,我得到了函数定义中包含的“printf”语句的以下结果

Value mat1=5 mat2=0 Je=1036
Value mat1=2 mat2=0 Je=1090
Value mat1=16 mat2=0 Je=1526
Value mat1=9 mat2=0 Je=1472

为什么价值这样打印?我正在使用Dev Cpp编译器。

1 个答案:

答案 0 :(得分:1)

printf语句中的格式说明符“%u”不正确。对于无符号长long,说明符应为“%llu”