#include <iostream> using namespace std; void get(int *p) { p=new int; } int main() { int *p=NULL; get(p); *p=4; cout<<*p<<endl; return 0; }