1.

Which of the following(s) is/are the correct way of assigning values to a forward_list f?

A. f.assign({1,2,3,4,5})
B. f.assign(10,5)
C. both f.assign({1,2,3,4,5}) and f.assign(10,5)
D. f.assign(1,1,1,1)
Answer» D. f.assign(1,1,1,1)


Discussion

No Comment Found