Answered step by step
Verified Expert Solution
Question
1 Approved Answer
C language Programming Write a C program to get 2 array, namely a[2][2]and b[2][2]. Get the numbers from user and store the entered numbers in
C language Programming
Write a C program to get 2 array, namely a[2][2]and b[2][2]. Get the numbers from user and store the entered numbers in a[2][2] and b[2][2]. Next, add the sum of this 2 array and display the contents of the array, Your display format must be EXACTLY the same as shown in Figure 2. SAMPLE OUTPUT: Enter elements of 1st matrix Enter a11: 1 Enter a12: 2 Enter a21: 3 Enter a22: 4 Enter elements of 2nd matrix Enter b11: 5 Enter b12: 2 Enter b21: 3 Enter b22: 5 Sum of Matrix: 6.0 4.0 6.0 9.0 Process exited after 12.9 seconds with return value Press any key to continue Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started