| 1 | int main() { |
|---|---|
| 2 | int not_a_ptr = 666; |
| 3 | const char *rawptr = "dead"; |
| 4 | // Immutable variable, .rodata region. |
| 5 | static const int nonWritable = 100; |
| 6 | // Breakpoint |
| 7 | return 0; |
| 8 | } |
| 9 |
| 1 | int main() { |
|---|---|
| 2 | int not_a_ptr = 666; |
| 3 | const char *rawptr = "dead"; |
| 4 | // Immutable variable, .rodata region. |
| 5 | static const int nonWritable = 100; |
| 6 | // Breakpoint |
| 7 | return 0; |
| 8 | } |
| 9 |