fork(1) download
  1. #include<matrix.h>
  2. int main()
  3. {
  4. intmatrix matrix1,matrix2,matrix3;
  5. double t;
  6. matrix1=Allocate2DInt(3,3);
  7. matrix2=Allocate2DInt(3,3);
  8. matrix3=Allocate2DInt(3,3);
  9. printf("Input Matrix1:\n");
  10. Input2DInt(matrix1,3,3);
  11. printf("Input Matrix2:\n");
  12. Input2DInt(matrix2,3,3);
  13. printf("output:\n");
  14. matrix3 = Mul2DInt(matrix1,matrix2,3,3,3);
  15. Print2DInt(matrix3,3,3);
  16. getch();
  17. return 0;
  18. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cpp:1:19: fatal error: matrix.h: No such file or directory
compilation terminated.
stdout
Standard output is empty