student marksheet program in c using structure , structure program in c for student details Here is a simple C program to store and display student details using a structure
#include <stdio.h>
// Define a structure for student details
struct Student {
char name[50];
int rollNumber;
float marks;
};
int main() {