Waiting for answer This question has not been answered yet. You can hire a professional tutor to get the answer.
Use C program Store information of 5 students using Structure Given details (like roll number, name and marks) of 5students as an input, read all the...
Use C program
Store information of 5 students using Structure Given details (like roll number, name and marks) of 5 students as an input, read all the details into Student structure and display the content.
Input:
1 Jack 72.12
2 Tom 42.42
3 Robert 72.12
4 Michael 72.12
5 James 72.12
where:
- All lines represent Roll number, Name and Marks respectively.
Output:
1 Jack 72.12
2 Tom 42.42
3 Robert 72.12
4 Michael 72.12
5 James 72.12