Just as the Title states, im getting an error where Main.O dependency is dropped, and that I have a circular main, why wont it compile? Ive been fooling around with this for about 2 hrs now
There are four errors that I can see
1) There is no implementation of void GetResults(); (called on line 37)
2) Line 34 missing an ;
3) Line 41 is missing an ;
4) typo on Line 61 - ednl
Well I fixed the errors and got rid of all the void GetResults(), and it still is circular
1 2 3 4 5 6 7 8 9
int
main()
{
cout << "Horsepower, Torque, and RPM converter \n";
Start();
system ("pause")// if I add this it will compile but do nothing but say the cout above
return 0;
}
Well I got rid of the while loop and now it works and actually takes in variables... but... it wants to only take in one, then do the computing
...
its so confusing
because half of the time, its dividing by zero but still giving out an answer
You can see what I mean here http://i549.photobucket.com/albums/ii370/Flash41000/Capture.png