int *a = new int[4]; for(int i=0;i<4;i++) { a[i] = i; printf("a[%d]=%d ", i, i); }
delete[] a;
return 0;