
Code:
#include<stdio.h>
#include<conio.h>
#include<process.h>
#include<string.h>
typedef struct {
int id;
char name[50];
char type[10];
int unit;
int price;
} data;
void input(data p[],int n)
{
for(int i=0;i<n;i++)
{
printf("ID:");
scanf("%d",&p[i].id);
fflush(stdin);
printf("Name:");
gets(p[i].name);
printf("Type:");
gets(p[i].type);
printf("Unit:");
scanf("%d",&p[i].unit);
...