diff --git a/3.c b/3.c new file mode 100644 index 0000000..498205d --- /dev/null +++ b/3.c @@ -0,0 +1,48 @@ +#include +#include +#include +#include +#include +#define SIZE 1024 +int main(){ + void matmul(float **A,float **B,float **C,int n); + int i,j,n; + float **A=new float*[n]; + float **B=new float*[n]; + float **C=new float*[n]; + for(i=0;i