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 derfloh 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: cgafa
  • Order by date
  1. cgafa

    String concatenation

    #include<iostream> #include<string> #include<sstream> using namespace std; int main() { char *pszMonth = &quot;October&quot;; int iDay = 21; int iYear = 1969; stringstream ss; ss << iDay << &quot; &quot; << pszMonth<< &quot; &quot; << iYear; cout<<ss.str()<<endl; return 0; } cheers

Part and Inventory Search

Back
Top