对于我的OS类,我需要仅使用系统调用打印出此矩阵乘法的结果。在我的讲义之后,我写了这段代码。我用:
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#define N 1000
// Matrix
long long int A[N][N],B[N][N],R[N][N];
int main(int argc, char *argv[])
{
int x,y,z;
char str[100];
/* Matrix inicialization */
for(y=0;y<N;y++)
for(x=0;x<N;x++)
{
A[y][x]=x;
B[y][x]=y;
R[y][x]=0;
}
/* Matrix multiplication */
for(y=0;y<N;y++)
for(z=0;z<N;z++)
for(x=0;x<N;x++)
{
R[y][x]+= A[y][z] * B[z][x];
}
//System calls for printing the result
sprintf(str,"%lld\n",R);
write(1,str,strlen(str));
exit(0);
}
现在,它在控制台中打印了一个14295680。教授给了我们一个包含机器代码的文件,并打印了332833500,这似乎更加可靠。
提前致谢。
编辑:更改了printf调用的类型 编辑2:修复R [N] [N]
答案 0 :(得分:1)
只需替换sprintf值:
sprintf(str,"%lld\n",R[N-1][N-1]); // = 332833500
write(1,str,strlen(str));
而不是
sprintf(str,"%lld\n",R); // this is a pointer
write(1,str,strlen(str));