Computer Science, asked by mammootty9292, 5 hours ago

what is an array in a c++ programing and could you please give some example of an array program?​

Answers

Answered by tanwarbaby
1

Answer:

We will learn to declare, initialize, and access array elements in C++ programming with the help of examples. In C++, an array is a variable that can store multiple values of the same type. For example, ... Instead of creating 27 separate variables, we can simply create an array: double grade[27]

Similar questions