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

Recent content by DJSaltee

  1. DJSaltee

    Help on defining a class type for a bank account.

    you'll have better luck doing this #include<iostream> #include<string> using namespace std; class BankAccount { private: double balance; string accountID; }; ---------------- remember anytime you #include its a good idea to also write using namspace std; and don't use <string.h> it...

Part and Inventory Search

Back
Top