Computer Science, asked by pachhapurvaishnavi, 19 days ago

write a c++ program to enter n elements in the array and display only those elements which do not end with 4

Answers

Answered by maryam2709
0

Answer:

Explanation:In this tutorial, we will learn to work with arrays. 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,

Suppose a class has 27 students, and we need to store the grades of all of them. Instead of creating 27 separate variables, we can simply create an array:

Similar questions