Program to accept and display details of 5 students (roll no, name, percentage) using structure
C File => /* Write a program to accept and display details of 5 students (roll no, name, percentage) using structure. */ #include<stdio.h> #include<stdlib.h> typedef struct Student { int rno; char name[50]; float perc; }; int main() { struct Student s[5]; int i; for(i=0;i<5;i++) { printf("\n\n Enter Roll no. : "); scanf("%d",&s[i].rno); printf("\n Enter Name : "); scanf("%s",s[i].name); printf("\n Enter percentage : "); scanf("%f",&s[i].perc); } printf("\n\n Given details are : "); for(i=0;i<5;i++) { ...
Comments
Post a Comment
Please do not enter any spam link in message.