1234567891011121314151617181920
char select; . . . printf("Do you want to enter? [Y]es or [N]o, Press only the Y or N."); select=getch(); if(select=='Y' || choose=='y'){ /*call a function or a statement*/ } else if(select=='N' || select=='n'){ /*call a function or a statement*/ }