11 lines
183 B
C++
11 lines
183 B
C++
char*** carrot;
|
|
char** broccoli;
|
|
char* tomato;
|
|
char radish = 'q';
|
|
tomato = new char;
|
|
*tomato = 'z';
|
|
broccoli = new char*;
|
|
*broccoli = tomato;
|
|
carrot = new char**;
|
|
*carrot = broccoli;
|