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 strongm 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: agungsan
  • Order by date
  1. agungsan

    Weekly Payroll Program:::need help

    double marriedTax (int status, double wkIncome) { if (status == 1) ... // what if status != 1, where is the return statement? } the same for double singleTax (int status, double wkIncome) { if (status == 2) ... // what if status != 2, where is the return statement? } It is...
  2. agungsan

    Can't display items from an array

    You delete an element from your list by assigning a 'null' to it: void List<Object>::removeElement(char* type) { ... element_list[element]='\0'; ... } So, when you try to display the list you also have to check for element with null pointer in it, do something like: template<class...

Part and Inventory Search

Back
Top