- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
4 Posted Topics
Is the file with main including your template's source file?
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 …
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 …
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 …
The End.
fishsicles