30/09/2018, 16:04
Poll: Kiểm tra kiến thức C - 3.03
Các bạn thảo luận đáp án nhé, bài test lấy từ http://www.indiabix.com/online-test/c-programming-test/13
3.What will be the output of the program assuming that the array begins at the location 1002 and size of an integer is 4 bytes?
#include<stdio.h>
int main()
{
int a[3][4] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12 };
printf("%u, %u, %u
", a[0]+1, *(a[0]+1), *(*(a+0)+1));
return 0;
}
- A. 448, 4, 4
- B. 520, 2, 2
- C. 1006, 2, 2
- D. Error
Bài liên quan
Câu này phải chọn đáp án nào cho đúng nhẩy?