Answer:
Program:
The below program in c-language
int main()// main function
{
float a,b; //variable declaration //1
a=4.89,b=6.9;// assign the value//2
printf("%f",b/a);// statement to display the fraction value.//3
return 0;// return statement.
}
Output:
1.411043
Explanation:
The fraction value is a value that comes when a number is divided with another number. The description of the statement which used in the above program is as follows--