i am having difficulties in creating an array that holds marks for three students each having a set of five marks, this program should allow the user to input the marks per student ,** then calculate the highest and lowest mark for each student**

Well, you could use just a 2D array:

int marks[3][5]; // 5 marks for 3 students.

But that would be less readable, in my opinion, than an array of structures:

struct Student {
    int marks[5];
};

Student students[3];
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.