Files
CSCI-1200/labs/memory_debugging/veggies.cpp
2025-01-07 17:16:10 -05: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;