Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

PROGRAMS 1) Please write a complete C program to make addition, multiplication and transpose operations of two matrices. First, define 2 different matrices as mat1[10][10]

image text in transcribed

PROGRAMS 1) Please write a complete C program to make addition, multiplication and transpose operations of two matrices. First, define 2 different matrices as mat1[10][10] and mat2[10][10] and use the random number function to generate elements of matrices. The random numbers will be between (-100) and 100. Second, create 3 different functions add_matrices () for addition of matrices, multp_matrices() for multiplication of matrices and transpose_matrices() to take transpose of matrices. Then print results to screen. Matrice 1: Matrice 2: Addition of Matrices: Multiplication of Matrices: Tranpose of Matrice 1: Tranpose of Matrice 2: name 2) Please write a complete C program to apply Linear Search algorithm. Define an array with nam numbers[20] and ask to user enter elements of arrays. Then ask a number to search in array and apply linear search algorithm to find this number. If number is element of array, print the location of number in array. If number is not in the array then print the number is not in array. The output of program will like below. Enter 20 different numbers: 2,5, 7, 8, 9, 11, 41, 25, -52, -36, 87, 96, 82, 46,57, 32, 16, 19, -3, 91 Enter a number to search in array: 25 Result: 25 found at location 7

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Select Healthcare Classification Systems And Databases

Authors: Katherine S. Rowell, Ann Cutrell

1st Edition

0615909760, 978-0615909769

More Books

Students also viewed these Databases questions

Question

Calculate the lifetime value (LTV) of a loyal customer.

Answered: 1 week ago