Files
CSCI-1200/labs/04_memory_debugging/veggies.cpp
2023-09-19 21:31:07 -04:00

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;