Q35 Write a program in C to read and print a student’s detail using structure.

Admin

 

Write a program in C to read and print a student’s detail using structure.

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

Output

Enter information of students:

For roll number1,
Enter first name: Mitali 
Enter marks: 90

For roll number2,
Enter first name: Sahil
Enter marks: 99
Displaying Information:


Roll number: 1
First name: Mitali
Marks: 90.0

Roll number: 2
First name: Sahil
Marks: 99.0

Post a Comment

Cookie Consent
We serve cookies on this site to analyze traffic, remember your preferences, and optimize your experience.
Oops!
It seems there is something wrong with your internet connection. Please connect to the internet and start browsing again.
AdBlock Detected!
We have detected that you are using adblocking plugin in your browser.
The revenue we earn by the advertisements is used to manage this website, we request you to whitelist our website in your adblocking plugin.
Site is Blocked
Sorry! This site is not available in your country.