View Single Post
Old Apr 9th, 2006, 5:54 PM   #3
nnxion
Programming Guru
 
nnxion's Avatar
 
Join Date: Jun 2005
Location: elemental plane
Posts: 1,429
Rep Power: 5 nnxion is on a distinguished road
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
nnxion is offline   Reply With Quote