C Program to Create Employee Record and Update it
/* * C Program to Create Employee Record and Update it */ #include <stdio.h> #include <stdlib.h> #include <string.h> #define size 200 struct emp { int id; char *name; }*emp1, *emp3; void display(); void create(); void update(); FILE *fp, *fp1; int count = 0; void main(int argc, char **argv) { int i, n, ch; printf("1] Create a Record\n"); ...