int choices_selecter(char * Items,int items) { int choice =0 do{ printf("Select An Option:"); int i; for (i=0, i"); if(choice < 1 || choice > items+1){ printf("Invalid choice...press any key to retry....\n"); fflush(stdin); getchar(); } }while(choice < 1 || choice > items+1); return choice; }