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
0 Endorsements
Ranked #37.0K
2 Posted Topics
Re: c++ queue
1[CODE] #include <iostream.h> 2 #include "Queue.h" 3 4 // Simple test program for queues 5 6 main( ) 7 { 8 Queue<int> Q; 9 10 for( int i = 0; i < 5; i++ ) 11 Q.Enqueue( i ); 12 13 cout << "Contents:"; 14 do 15 { 16 cout …
write aprogram in c++ to read the tokens in one at a time ,if it is integer,push it on stack, if it is binary operator, pop two elements from the stack, apply the operator to the two elements and push the result back on the stack?? please help me to …
The End.
magician89