void afunction(int *x) { //x=new int; *x=12; } int main() { int v=10; afunction(&v); cout<<v; return 0; }