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 int main() { int i = 5, j; int *p , *q; p = &i; q = &j; j = 5; printf("%d %d", *p, *q); getch(); }

14/25

What will be output of following program? #include #include int main() { int i = 5, j; int *p , *q; p = &i; q = &j; j = 5; printf("%d %d", *p, *q); getch(); }

5 5

Complier Error

5 Garbage value

Giải thích

Chọn đáp án A