#include<stdio.h>
#include<stdlib.h>

main ()
{
int lynne;
printf("\n\n\n* * * * * * * * * * * * * * * * * * * * * * * * * * * * ");
printf("\n*                                                     *");
printf("\n*               (1)  ADD RECORD                       *");
printf("\n*               (2)  INSERT RECORD                    *");
printf("\n*               (3)  DELETE RECORD                    *");
printf("\n*               (4)  SEARCH RECORD                    *");
printf("\n*               (5)  PRINT ALL RECORDS                *");
printf("\n*               (6)  EXIT                             *");
printf("\n*                                                     *");
printf("\n* * * * * * * * * * * * * * * * * * * * * * * * * * * * \n\n");

printf("\n\n\nPls. ENTER YOUR CHOICE:->  ");

scanf("%d",&lynne);

{
if(lynne<1||lynne>6) 
printf("\n -ERROR! Pls. Enter the Correct No.\n\n");
}

{
if(lynne==1)
printf("\n-ADD RECORD-\n\n");
}

{
if(lynne==2)
printf("\n-INSERT RECORD-\n\n");
}

{
if(lynne==3)
printf("\n-DELETE RECORD-\n\n");
}

{
if(lynne==4)
printf("\n-SEARCH RECORD-\n");
}

{
if(lynne==5)
printf("\n-PRINT ALL RECORDS-\n\n");
}

{
if(lynne==6)
exit(6);
}





system("PAUSE");
}




