#include <stdio.h>
int main() {
int a[3][4] = {{10, 15, 20, 25}, {30, 35, 40, 45}, {50, 55, 60, 65}};
printf("a+1 = %p,", a+1); //a[1][0] 30번 값의 주소를 가리킴
printf("*(*a+2) =%d,", *(*a+2)); //a[0][2] 값인 20
printf("*(*(a+1)+2) = %d\n", *(*(a+1)+2)); //a[1][2] 값인 35
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: