Answer:
Follows are the given statement to this question:
printf("i=%d f=%f", i, f);//print value
Explanation:
The full code to the given question:
code:
#include <stdio.h>//defining header file
int main()// main method
{
int i;//declaring integer variable
float f;//declaring float variable
i=25; //assign integer value
f=12.34;//assign float value
printf("i=%d f=%f", i, f);//print value
i=703;//assign integer value
f=3.14159;//assign float value
printf("\n");//for line break
printf("i=%d f=%f", i, f);//print value
return 0;
}
Output:
i=25 f=12.340000
i=703 f=3.141590
In the above-given code, the two variable "i and f" is declared, that holds integer and floating-point value in its respective variable and use the print method, to print "i and f" variables value.