View Single Post
  #12 (permalink)  
Old August 6th, 2004, 02:55 PM
mehdi62b mehdi62b is offline
Friend of Wrox
 
Join Date: Jul 2004
Posts: 623
Thanks: 0
Thanked 1 Time in 1 Post
Default

also try this code
Code:
        char a;
    a=getch();
    while((a<'0')||( a>'9'))
    {
        a=getch();
    }
    putch(a);
--------------------------------------------
Mehdi.:)
Reply With Quote