PLleasae convert this in C language, thanks!...
#include using namespace std;int main(){ int a[10][10], b[10][10], s[10][10]; int i,j,row, column; cout <"enter size="" of="">"enter> cin >> row; cout <"enter size="" of="">"enter> cin >> column; cout <"enter elements="" of="" matrix="" a"="">"enter><> for(i=0;i<> { for(j=0;j<> { cin >> a[i][j]; } } cout <"enter elements="" of="" matrix="" b"="">"enter><> for(i=0;i<> { for(j=0;j<> { cin >> b[i][j]; } } cout < "difference="" of="" a="" and="" b"=""><> for(i=0;i<> { for(j=0;j<> { cout < a[i][j]="" -="" b[i][j]="">< "="" =""> } cout <> } getch(); return 0;}
using namespace std;
int main()
{
int a[10][10], b[10][10], s[10][10];
int i,j,row, column;
cout <"enter size="" of="">"enter>
cin >> row;
cin >> column;
cout <"enter elements="" of="" matrix="" a"="">"enter><>
for(i=0;i<>
for(j=0;j<>
cin >> a[i][j];
}
cout <"enter elements="" of="" matrix="" b"="">"enter><>
cin >> b[i][j];
cout < "difference="" of="" a="" and="" b"=""><>
cout < a[i][j]="" -="" b[i][j]="">< "="" ="">
cout <>
getch();
return 0;
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here