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 gkittelson 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: jdogg
  • Order by date
  1. jdogg

    reverse routine in CPP

    Okay this is making me mad. where it says cout << s; put cout << s(left bracket i right bracket) cout << s[i];
  2. jdogg

    reverse routine in CPP

    I forgot where it says cout << s; put cout << s[i];
  3. jdogg

    reverse routine in CPP

    const int size = 21; char* s = new char[size]; strcpy(s, &quot;Hello World&quot;); // include <string.h> for (int i = strlen(s); i > 0; i--) cout << s[i]; delete [] s;
  4. jdogg

    flush input stream

    Hi, is it possible to flush an input stream? Thanks!!

Part and Inventory Search

Back
Top