C Programs / Array of structures C program
Program Name
Write a C Program for Array of structures C program. |
Theory
structure is a collection things consists of different data types.
|
Program Code
|
Input
Enter Number of students
2
Enter student info(Rollno, Avg,name):11 99 a
Enter student info(Rollno, Avg,name):22 99 b
|
Output
RollNO tAverage Name
1 99.000000 a
2 99.000000 b
|
Online C Compiler (To copy paste and Run the c program)
|
|