C/C++
debug.asc
Associated article: Making a Case for Animating C++ Programs
Tags: C/C++ Parallel
_MAKING A CASE FOR ANIMATING C++ PROGRAMS_
by Alan West
Example 1:
class Node
{
...
public:
Node();
Node (Node &); // Unary
Node (Node &, Node &); // Binary
};
void display_node()
{
Node nodeA;
Display display;
display->print(nodeA);
}
Example 2:
(a)
Filter remove_...


