Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int main(int argc, char** argv) {
- int **i = new int *[10];
- for(int n=0;n<10;n++){ i[n] = new int[4]; }
- system("pause>silvio");
- delete[] i;
- }
Advertisement
Add Comment
Please, Sign In to add comment