Computer Science, asked by vika19, 1 year ago

Write a program to input and store roll numbers , names and marks in 3 subjects of n number of students in five single dimensional arrays and display the remark based on average marks​


rakeshchennupati143: why did you say 5 dimensional array instead we can use 3 arrays?
vika19: its 5 single dimensional array & its our class assignment, not in our hand.
rakeshchennupati143: ok i'll write the program in 5 dimensional array you have to give me the brainliest ok?
rakeshchennupati143: which language you want?
rakeshchennupati143: java,c,python,php,JS,c++?
vika19: java

Answers

Answered by Anonymous
10

struct student

{

   char name[50];

   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;

}


vika19: My assignment if for bluej/java
Anonymous: now how can i edit?
Anonymous: the time has passed
Anonymous: you had to mention that
Anonymous: i am sorry!
vika19: no problem. by the way, thanks for your effort.
Anonymous: you are most welcome
Answered by kritikasingh75
23

Explanation:

here is the answers....it may help you.............

thank you

Attachments:
Similar questions