Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TugboatEng on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by qUarC

  1. qUarC

    getch() function

    And do you know what are the equivalent KeyPressed and KeyReleased functions because i have bc5.0 and i don't have them?
  2. qUarC

    getch() function

    I want the pad to move constantly as long as i keep the buton pressed. That's all.
  3. qUarC

    getch() function

    I have written a simple game with a ball which bounces off the margins of the screen and at the bottom of the screen is my pad which is controlled by 'a' and 'd' buttons on my keyboard.:(simplified) int c = 1; while(1) { if(kbhit()) { c = getch(); if(c == 27) exit(1); if(c == 'a' || c ==...

Part and Inventory Search

Back
Top