Ds
[9/17, 8:38 AM] Rudresh Engg: #include <stdio.h> #include <string.h> // Structure definition for storing student details struct Student { int id; // Student ID char name[50]; // Student name int age; // Student age char address[100]; // Student address }; int main() { int n, i; // Ask user for number of students printf("Enter number of students: "); scanf("%d", &n); // Create an array of Student structures struct Student students[n]; // Input student details for(i = 0; i < n; i++) { printf("\nEnter details of student %d:\n", i+1); printf("ID: "); scanf("%d", &students[i].id); ...