Page 57 - C Programming
P. 57

โปรแกรมที่ 4-6 โปรแกรมตรวจสอบการกดแป้ นพิมพ์ Esc โดยถ้ามีการกด


              แป้ นพิมพ์ Esc ให้พิมพ์ Exit Program แต่ถ้ากดแป้ นพิมพ์อื่นๆให้พิมพ์ Run

               Program




                               #include <stdio.h>


                               main()


                                  { char key;


                                     clrscr();


                                     printf("Enter Key :");



                                     key=getche();


                                     if(key= =27) /* Check Key Esc */


                                           printf("\nExit Program");


                                     else


                                           printf("\nRun Program");



                                      getch();


                                    }
   52   53   54   55   56   57   58   59   60   61   62