[ create a new paste ] login | about

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

C++, pasted on Feb 14:
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "stdio.h"
class Exp {
   public:
	void test() {
	  printf("%s","good");
	} 
};

int main(void) {
	Exp *p = NULL;
	p->test();
	return 0;
}


Output:
1
good


Create a new paste based on this one


Comments: