| 1 | int main (int argc, char const *argv[]) { |
|---|---|
| 2 | char *char_ptr = "Some pointer here"; |
| 3 | void *void_ptr = &char_ptr; |
| 4 | |
| 5 | return 0; // Break at this line |
| 6 | } |
| 7 |
| 1 | int main (int argc, char const *argv[]) { |
|---|---|
| 2 | char *char_ptr = "Some pointer here"; |
| 3 | void *void_ptr = &char_ptr; |
| 4 | |
| 5 | return 0; // Break at this line |
| 6 | } |
| 7 |