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 #include void main() { char ch[]={'0', '1', '2', '3', '4', '5', '6', '7', '8', '9'}; int *p = (int*)ch; p++; printf("%x", *p); getch(); }

18/25

What will be output of following program? #include #include void main() { char ch[]={'0', '1', '2', '3', '4', '5', '6', '7', '8', '9'}; int *p = (int*)ch; p++; printf("%x", *p); getch(); }

37363534

34353637

45673333

Giải thích

Chọn đáp án A