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