You want the user to enter the length, width, and height from the keyboard. Which cin statement is correctly written?
A) cin << length, width, height;
B) cin.get(length, width, height);
C) cin >> length >> width >> height;
D) cin >> length, width, height;
7-10
E) cin << length; width; height;