Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~414 People Reached
Favorite Forums
Favorite Tags
c++ x 6

3 Posted Topics

Member Avatar for darkis

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 …

Member Avatar for stephen84s
0
177
Member Avatar for AceChandra

.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 …

Member Avatar for darkis
0
85
Member Avatar for darkis

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 …

Member Avatar for Nick Evan
0
152

The End.