Computer Science, asked by Avantika11, 1 year ago

to print the report card output must contain Name Roll no Class marks of 5 subjects and percentage in loop please answer fast

Answers

Answered by JAMES1111
1


#include <stdio.h> struct student { char name[60]; int roll; float marks; } s[10]; int main() { int i; printf("Enter information of students:\n"); // storing information for(i=0; i<10; ++i) { s[i].roll = i+1; printf("\nFor roll number%d,\n",s[i].roll); printf("Enter name: "); scanf("%s",s[i].name); printf("Enter marks: "); scanf("%f",&s[i].marks); printf("\n"); } printf("Displaying Information:\n\n"); // displaying information for(i=0; i<10; ++i) { printf("\nRoll number: %d\n",i+1); printf("Name: "); puts(s[i].name); printf("Marks: %.1f",s[i].marks); printf("\n"); } return 0; }

Output

Enter information of students: For roll number1, Enter name: ABCD Enter marks: 66 For roll number2, Enter name: XYZZ Enter marks: 75 . . . Displaying Information: Roll number: 1 Name: ABCD Marks: 66

Similar questions