Look at the following structure declaration. struct Employee { string name;i nt idNum; }; Employee staff[100]; The correct statement to display the 50th name among the employees is ___________. (A) Cout << Employee[49].staff.name (B) Cout << staff[49].name; (C) Cout << name[49].Employee.staff (D) Cout << name of staff[49] type Employee