brintos

brintos / llvm-project-archived public Read only

0
0
Text · 176 B · 26467da Raw
9 lines · cpp
1int main() {2  int not_a_ptr = 666;3  const char *rawptr = "dead";4  // Immutable variable, .rodata region.5  static const int nonWritable = 100;6  // Breakpoint7  return 0;8}9