Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
~6K People Reached
Favorite Forums
Favorite Tags
c++ x 6

4 Posted Topics

Member Avatar for mitrious
Member Avatar for mitrious
0
157
Member Avatar for fishsicles

Hello, I am working on developing an interpreted programming language for a capstone project and have hit a snag dealing with two classes. In the interpreter, the classes represent a scope containing a procedure pointer and the procedure pointing back to the scope containing it. The former to allow the …

Member Avatar for fishsicles
0
160
Member Avatar for israruval

Are you required to use vector to implement a stack, or do you just need a stack? In the latter case, [code=C++]#include <stack>[/code] works fine. If you need to implement a stack with vector, though, this may work: [code=c++]#include <vector> template <class T> // you can skip the templates if …

Member Avatar for mike_2000_17
0
5K
Member Avatar for biancaW

Look at lines 19 and 26. Many of the conditions require that the rearPad value have two distinct values; `rearPad == 0 && rearPad == 1` will always return false, for example. Some of the references to the rearPad variable should be replaced with frontPad; this should give the desired …

Member Avatar for fishsicles
0
366

The End.