Answer:
Correct option is (C) that is cin >> length >> width >> height;.
Step-by-step explanation:
In the C++, for reading the input we use "cin>>" operator. If we have to read multiple input in the same line we can use this as "cin>>x>>y>>z;". it will read multiple input in the same line. "Cout<<" is use to print output in C++.To read multiple input, all the variables are separated by ">>" operator.To read multiple input we can separate variables
by ",".
Example:
cin>>x>>y>>z;
it will read three value in variables "x","y" and "z" respectively.