Quote:
|
Originally Posted by Barb
[code]int main()
{
int time;
int length;
double gross;
double net;
char input;
getStartTime(time);
getLengthofCall(length);
calcGross(time, length, gross);
calcNet(time, length, gross, net);
displayReport(gross, net, input);
return 0;
}
|
I wonder what the problem is.... 
Maybe initialise your variables?
__________________
"Employ your time in improving yourself by other men's writings, so that you shall gain easily what others have labored hard for."
-- Socrates
|