Answer:
The C statement is given below with appropriate comments
Step-by-step explanation:
printf("i=%d f=%f", i, f);
// printf is used to write a values to standard output. In c++, we use cout.
// %d is a control string to display integer value and %f is a control string to display floating point value.
// i represents the integer value, corresponding to %d
// f represents the float value, corresponding to %f