| 1 | #include <stdio.h> |
| 2 | |
| 3 | int main(){ |
| 4 | int i = 72; |
| 5 | int* j = &i; // j is a pointer pointing to i (j is an integer pointer) |
| 6 | int k = 67; |
| 7 | printf("The address of i is %p\n", &i); |
| 8 | printf("The address of i is %p\n", j); |
| 9 | printf("The address of i is %p\n", &k); |
| 10 | |
| 11 | |
| 12 | printf("The value at address j is %d\n", *(&i)); |
| 13 | |
| 14 | return 0; |
| 15 | } |
nothing calls this directly
no outgoing calls
no test coverage detected