multiplication of two matrices in c++
#include<iostream.h>#include<conio.h>void main(){int r1,r2,c1,c2,i,j,k;int ham[12][12];int tum[12][12];int mul[12][12]={0,0,0,0,0,0,0,0,0…Read More
transpose of a matrix in c++
#include<iostream.h>#include<conio.h>void main(){int r,c,i,j;int matrix[12][12];int transpose[12][12];cout<<"enter no of rows of ma…Read More
structure in c++ by zafar iqbal
#include<iostream.h>#include<conio.h>struct student{int rollno;int marks;float avg;char grade;};void main(){student s;cout<<"enter …Read More
0 comments:
Post a Comment