Kizspy Question: 45
(Choose 1 answer)
Choose the correct statement about the following statement:
scanf("%d, %d", &a, &b);
A. scanf will expect two integers inputted by user and write them to variables a and b.
B. scanf will expect two floating-point numbers inputted by user and write them to variables a and b.
C. scanf will expect two integers inputted by user separated by a comma, and write the first integer to variable
a, the comma to variable b.
D. scanf will expect two integers inputted by user separated by a comma, and write the first integer to variable
a, the second integer to variable b.