// test.cpp #include #include int main() { int *x = new int; *x = 5; fprintf(stderr, "x: %d\n", *x); delete x; }