Computer Science, asked by vyshnavp, 8 months ago

C ++ pgm to accept 2 single dimensional array of equal length and find the difference between corresponding elements​

Answers

Answered by bharathukkusuri
0

Explanation:

An array of arrays is known as 2D array. The two dimensional (2D) array in C programming is also known as matrix. A matrix can be represented as a table of rows and columns. Before we discuss more about two Dimensional array lets have a look at the following C program.

Simple Two dimensional(2D) Array Example

For now don’t worry how to initialize a two dimensional array, we will discuss that part later. This program demonstrates how to store the elements entered by user in a 2d array and how to display the elements of a two dimensional array.

Similar questions