Write a program to create a structure which will store name, roll and marks of 6 courses that you obtained. This structure will also store the total obtained marks. Which you can obtain by summing all the marks. Store all the data for 10 students. Print the name, roll and total obtained marks of each student.
#include<stdio.h> #include<conio.h> struct student { char name[30]; int roll,bangla,english,math,computer,fundamental,p...