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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. jgavin

    Problem with toupper()

    Well that certainly put some light on the problem, even though my final solution was to avoid using getche() altogether. I had previously tried to use toupper() in this way: cin >> ch; toupper(ch);//without success but what did work was: cin >> ch; ch = toupper(ch);//success Thankyou for your...
  2. jgavin

    Problem with toupper()

    When I compile my program, the compiler tells me that toupper() is an undeclaired variable. The library for this function has been included, so I'm wondering if I'm using it wrong or if the library may be corrupt? This is how I'm using it: XXX = toupper(getche());

Part and Inventory Search

Back
Top