Q : Write a program to input name of age record of a company. How many records have to input? It will ask at run time. After input complete, program will print all the records with average age.
Solution :
/*==============================
Girfa Student Help
Program : Age calculation in dynamic
structure
More Program :
http://girfahelp.blogspot.in/p/c-language-structure-programming.html
================================*/
#include<stdio.h>
#include<conio.h>
typedef struct stu
{
char name[20];
int age;
}student;
void main()
{