No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
3 Posted Topics
hello there, i was hoping someone could help me figure out why my program isn't compiling. Its a polynomial math program i put together...and with my function "MathPoly" //'d out it compiles just fine....It continually tells me that variables are undeclared and the compiler is crapping out on line 51 … | |
Re: .cpp files and .h files are all different ways of saving c++ coded files. So if you type in your language save your class description as name.h and save your main file with int main() as name.cpp then when you are writing your program...add into name.cpp #include "name.h" and that … | |
So the problem seems to be when i try to compile its telling me on line 16 of the main program (the last line) "unqualified-id at end of input" and "expected ',' or ';" at end of input I played with just about every combination of ending brackets and semi … |
The End.