Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
~2K People Reached
Favorite Forums
Favorite Tags
c++ x 3
Member Avatar for selsium

could any one please help me to solve this error? error LNK2019: unresolved external symbol _Underst_Sql referenced in function _main 1>cartmot.obj : error LNK2019: unresolved external symbol _Read_Desc referenced in function _main 1>cartmot.obj : error LNK2019: unresolved external symbol _Assegna referenced in function _main fatal error LNK1120: 3 unresolved externals …

Member Avatar for WallyBags
0
69
Member Avatar for WallyBags

"return type may not be specified on a constructor" I am getting this error in VS10. Here's my code: (the error appears on the word class) ComplexNumDec.h [CODE][COLOR="Red"]class[/COLOR] ComplexNum{ private: double real; double imag; public: ComplexNum(double x, double y); ~ComplexNum(); ComplexNum operator+(ComplexNum x); ComplexNum operator-(ComplexNum x); ComplexNum operator*(ComplexNum x); }[/CODE] …

Member Avatar for WallyBags
0
2K