https://docs.vultr.com/clang/e....xamples/store-inform
write a program to store and print the roll no name , age and marks of a student using structures, 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;
};