Computer Science, asked by AgnikBiswas, 2 months ago

How to write the following program...There is an array named 'n' containing the name of 10 students and an array named 'm' containing their respective marks...Print all the students marks along with their name in descending order of their marks. please don't forget about the name and that we have to print the name of all students​

Answers

Answered by 14502mairak
0

Answer:

tkyldp mxitfoy ktk xmgx

Answered by kumarupdesh1982
0

Explanation:

As expected, an n array must be declared prior its use. A typical declaration for an array in C++ is: type name [elements]; where type is a valid type (such as int, float ...), name is a valid identifier and the elements field (which is always enclosed in square brackets [] ), specifies the size of the array.

Similar questions