onal array.
Marks of each students :
CSE115 CSE 173 CSE215
Jamal 80 70 60
Mamunul 57 76 74
Saad 67 98 87
Rana 98 87 90
Mabubur 45 97 34
1. How to create function named myTotalMark which calculate Total Obtained marks of each students, Print Total marks of each students with their name. Note: Create 2D array using marks in this function and pass same array to next function(specificStudent and specificMarks) as a parameter.So you have to call those function from myTotalMark.
2. Now create another function named specificMarks which calculate Total average marks of Three specific subjects according to teachers input(1 to 5).If teacher Enter 1 it will calculate average marks of CSE115 course.Store marks in a Array and print average marks with subject name. void specificMarks(int subject[5][3])
3. Create another function named specificStudent which calculate Three Specific students marks according to teachers input(1 to 10).If teacher Enter 1 it will calculate the total marks of Jamal.Store marks in a Array and print three students mark with their name.Pass this array to Grade function as a parameter. void specificStudent (int student[5][3])
4. Create another funciton named grade which Calculate grade of Three students which were obtained in specificStudent Function.Using this range: void grade(int number[ ] )
100-200 B+
201-300 A-
301-500 A
5. Now create main function and call only myTotalMark function to display output.
please do it in #c program
onal array.
Marks of each students :
CSE115 CSE 173 CSE215
Jamal 80 70 60
Mamunul 57 76 74
Saad 67 98 87
Rana 98 87 90
Mabubur 45 97 34
1. How to create function named myTotalMark which calculate Total Obtained marks of each students, Print Total marks of each students with their name. Note: Create 2D array using marks in this function and pass same array to next function(specificStudent and specificMarks) as a parameter.So you have to call those function from myTotalMark.
2. Now create another function named specificMarks which calculate Total average marks of Three specific subjects according to teachers input(1 to 5).If teacher Enter 1 it will calculate average marks of CSE115 course.Store marks in a Array and print average marks with subject name. void specificMarks(int subject[5][3])
3. Create another function named specificStudent which calculate Three Specific students marks according to teachers input(1 to 10).If teacher Enter 1 it will calculate the total marks of Jamal.Store marks in a Array and print three students mark with their name.Pass this array to Grade function as a parameter. void specificStudent (int student[5][3])
4. Create another funciton named grade which Calculate grade of Three students which were obtained in specificStudent Function.Using this range: void grade(int number[ ] )
100-200 B+
201-300 A-
301-500 A
5. Now create main function and call only myTotalMark function to display output.