#include using namespace std; int main(){ int *m = new int[5]; m[2]=23; cout << m[2] << endl; return 0; }