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 IamaSherpa 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: *

  • Users: kelek
  • Order by date
  1. kelek

    "cin" errorr

    You might want to read it in the input intially character by character, appending it to a string (or char array). For each character, you can use the "isdigit" function to determine if the character is a digit or not. (If you support +/- for signs, you might want to handle that...
  2. kelek

    Problem displaying string

    The string class does not have a << operator. To get this to work (without explaining why), try using: cout << S1.c_str(); The class &quot;string&quot; is a type of the class &quot;basic_string&quot;. In VC++ help files (at least for 6.0) look in the Index under &quot;string&quot;, then...
  3. kelek

    winsock send function with WSAENOBUFS and WSAEWOULDBLOCK errors

    I have recently experienced similar problems. I believe WSAEWOULDBLOCK error is caused due to it trying to read the socket when no data is available. Since nothing is available, it would have to block in order to get the number of bytes you are trying to read. So, what to do depends on your...

Part and Inventory Search

Back
Top