7 lines
97 B
C++
7 lines
97 B
C++
int main() {
|
|
int not_a_ptr = 666;
|
|
const char *rawptr = "dead";
|
|
// Breakpoint
|
|
return 0;
|
|
}
|