Guest User

Untitled

a guest
Dec 11th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.10 KB | None | 0 0
  1. char **a;
  2. a = new char*[10];
  3. a[0] = ".";
  4. cout << a[0];
  5. delete a[0]; // error here ? why ?
Add Comment
Please, Sign In to add comment