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

What is output? #include #include struct birthday { int d; // day int m; // month int y; // year }; struct info { int ID; // code of staff birthday b; }; void main() { info a = {1009, 16,

4/25

What is output? #include #include struct birthday { int d; // day int m; // month int y; // year }; struct info { int ID; // code of staff birthday b; }; void main() { info a = {1009, 16, 9, 1989}; printf("\nID=%d, dd/mm/yyyy = %d/%d/%d",a.ID,a.b.d,a.b.m,a.b.y); getch(); }

ID=1009, dd/mm/yyyy = 16/09/1989

ID = 1009, dd/mm/yyyy = garbage value/garbage value/garbage value (garbage value: giá trị rác)

Error sytax (Lỗi cú pháp)

Giải thích

Chọn đáp án A