Question: struct node { char *name; int marks; node *next; }; By using the above declaration for the Linked List, write a program in C++ to display the summary report regarding the pass/fail ratio of the subject Data Structure for the class BSI-3 that have only 15 students. The required Report Summary for the exam will be like wise: The No. of A grades........???
Question:
struct node
{
char *name;
int marks;
node *next;
};
By using the above declaration for the Linked List, write a program in C++ to display the summary report regarding the pass/fail ratio of the subject Data Structure for the class BSI-3 that have only 15 students.
The required Report Summary for the exam will be like wise:
The No. of A grades........???
The No. of B grades........???
And so on by applying the grading criteria of COMSATS-University Islamabad. Question:
struct node
{
char *name;
int marks;
node *next;
};
By using the above declaration for the Linked List, write a program in C++ to display the summary report regarding the pass/fail ratio of the subject Data Structure for the class BSI-3 that have only 15 students.
The required Report Summary for the exam will be like wise:
The No. of A grades........???
The No. of B grades........???
And so on by applying the grading criteria of COMSATS-University Islamabad.
Step by step
Solved in 3 steps with 1 images