[ create a new paste ] login | about

Link: http://codepad.org/j3bzECYU    [ raw code | fork ]

C++, pasted on Dec 15:
1
2
3
4
5
6
7
8
9
10
11
#include "stack.h"

int main(){
	MyStack stk;

	stk.push('a');
	stk.push('b');
	stk.pop();
	stk.push('c');
	return 0;
}


Create a new paste based on this one


Comments: