700+ câu trắc nghiệm Ngôn ngữ lập trình C có đáp án - Phần 14

What will be output of following program? #include int main() { int i = 3; int *j; int **k; j = &i; k = &j; printf("%u , %u , %d ", k, *k, **k); return 0; }

10/25

What will be output of following program? #include int main() { int i = 3; int *j; int **k; j = &i; k = &j; printf("%u , %u , %d ", k, *k, **k); return 0; }

Address of j , Address of i , 3

Complier Error

3 , 3 , 3

Giải thích

Chọn đáp án A