Create three database using header linked
Student (Roll No, Name, Branch ID, CGPA)
University (University ID, University Name, University Location, Year of start)
Branch (Branch ID, University ID, Branch Name)
Implement the following modules/ sub-modules using menu driven approach:
-> Delete all students whose CGPA<6.0 and store them in another list. They will come back to original student list if their CGPA>=6.0 (Update function)
-> Display the list of students reading in a specific University
Create three database using header linked
Student (Roll No, Name, Branch ID, CGPA)
University (University ID, University Name, University Location, Year of start)
Branch (Branch ID, University ID, Branch Name)
Implement the following modules/ sub-modules using menu driven approach:
-> Student Name, University Name and Branch Name should all be in Capital Letters. (If the user has not entered accordingly, then the program must convert it into Capital Letters and store.)
-> Display the entire student list/ University list/ Branch List
Create three database using header linked list
Student (Roll No, Name, Branch ID, CGPA)
University (University ID, University Name, University Location, Year of start)
Branch (Branch ID, University ID, Branch Name)
Implement the following modules/ sub-modules using menu driven approach:
-> Keep the Roll No, University ID and Branch ID Unique (Duplicated entry should not be allowed and prompted)
-> Students can take a University ID/ Branch ID only if it is available in the University/ Branch database.
: India is a country with moderate weather. So, people here measure temperature in Celsius scale. America is country with cold weather. So, people there measure temperature in Fahrenheit scale. Some students of LPU are going for an international exposure visit to America. Since it is the first time for them, they find it very difficult to follow their temperature readings. Write a program to help them understand the American temperature readings easier, based on their Indian way of understanding. [10]
Exercise 1: Practice to store and print data in an array
a) Write a C program that reads marks of 10 students into a single subscripted array.
b) Above marks should be between 0 to 20. Modify the above program to add marks to the array only if the input mark is between the given range.
c) Display the values stored in the array.
Exercise 2: Practice accessing data stored in an array
Modify the above program to find the mean of the marks stored in the array.
1. Let a linked list consists of n number of nodes, where each node consists of an unique character that represents the grades of the students (O, E, A, B, C ), and pointer to the next node. Write the C code to group the students having the same grade in consecutive places and also finally all the nodes should be in sorting order as per their grade value. (O->O->E->E->E->A->B->B->C->C->C)