Westonci.ca is the premier destination for reliable answers to your questions, brought to you by a community of experts. Explore our Q&A platform to find reliable answers from a wide range of experts in different fields. Our platform offers a seamless experience for finding reliable answers from a network of knowledgeable professionals.

Which of the following options is true when you run the given code snippet?
int num1 = 0;
int num20;
string str1;
istringstream strm("16 Feb 1982"); strm >> num1 >> str1 >> num2;

A. str1 is "1982"
B. num2 is 0
C. num2 is 16
D. num1 is 16