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
~235 People Reached
Favorite Forums
Favorite Tags
c++ x 4
Member Avatar for EBC

Could anybody advise me where I can get free resources in c++ class design, whether it's online books or websites? Thanks a lot.

Member Avatar for hatemstar
0
43
Member Avatar for EBC

Hi, I'm a beginner in C++. I have a problem with referencing resources between 2 or more files. This is the main cpp code: [code] #include "stack.h" #include <cassert> #include <iostream> using std::cout; using std::endl; int main() { IStack ist; ist.Push(1); } [/code] and the header file: [code] const int …

Member Avatar for EBC
0
192