#include<stdio.h>
#include<conio.h>
void main()
{
int i,j;
long int a[3][3],b[3][3],r[3][3];
clrscr();
//input for Matrix1
for(i=0;i<=2;i++) //rows
{
for(j=0;j<=2;j++) //col
{
printf("\nEnter
Any
Number
for Matrix1 : ");
scanf("%ld",&a[i][j]);
}
}
//input for Matrix2
for(i=0;i<=2;i++) //rows
{
for(j=0;j<=2;j++) //cols
{
printf("\nEnter
Any Number
for Matrix2 : ");
scanf("%ld",&b[i][j]);
}
}
//for Matrix1
printf("\n Matrix1 : \n");
for(i=0;i<=2;i++) //rows
{
for(j=0;j<=2;j++) //cols
{
printf("
%ld",a[i][j]);
}
printf("\n");
}
//for Matrix2
printf("\n Matrix2 : \n");
for(i=0;i<=2;i++) //rows
{
for(j=0;j<=2;j++) //cols
{
printf("
%ld",b[i][j]);
}
printf("\n");
}
//substraction code
printf("\n
subtraction Matrix:\n");
for(i=0;i<=2;i++) //rows
{
for(j=0;j<=2;j++) //cols
{
r[i][j]=a[i][j]-b[i][j];
printf(" %ld",r[i][j]);
}
printf("\n");
}
getch();
}
|
Output |
Computer Science :: 11th/12th, Computer Engineering :: Degree/Diploma, Coding Concept ( C, C++ & JAVA Programming, JDBC Concept, DBMS - SQL Concept, Data Structure, Communication & Network Concept.
2-D ARRAYS SUBSTRACTION
Subscribe to:
Posts (Atom)
JAC Board Computer || IIT 2025 || Introductory Information Technology || Class 10 || Practical Examination 2025
Marks Division HOE 30 Marks IT Application Report File 20 Marks Viva - Voce 10 Marks 1) Write an HTML code to generate a web p...
-
1) TCP/IP - Transmission Control Protocol/ Internet Protocol. 2) HTTPs - Hyper Text Transfer Protocol. 3) ICT - Information Comunication Te...
-
1) What is Make Code Arcade? Answer: Make Code Arcade is a coding platform that enables to create block – based program. 2) How ...
-
Programmingway@Eklavya Technosys!: New Year's 2025 | Happiness & Healthier's Life Sty... : भारत कई धर्मों का संगम है, हिंदू, मुस...
No comments:
Post a Comment