unsigned int table[2][3] = {

{10,  11, 12},

{20, 21, 22}

};

printf(“ %u\n”, &table[0][0]); 출력은 1000이라고 , 다음 출력결과를 예측하고, 이를 설명하시오.

  1. printf(“%u\n”, table);

  2. printf(“%u\n”, (table + 1));

  3. printf(“%u\n”, * (table + 1 ));

  4. printf(“%u\n”, (*(table + 1 ) + 1 ));

  5. printf(“%u\n”,  ( *(table) + 1));

  6. printf(“%u\n”,*(*(table + 1) + l));

  7. printf(“%u\n”,*(*(table) + 1 ) );

  8. printf(“%u\n”, * ( *(table + 1 ) ));

printf(“%u\n”, *(*(table) + 1) + l);


이거 혹시 출력결과 뭐나오는지 알겠는 사람.. ㅠ 씨언어 잘 못해서 고생중이얌..