to D_C and Dush
Thanks for all the help.
Really appreciate it.
Thanks
User Profile
Collapse
-
How split a float number out into feet and inches
I am writing a simple program to convert mm to feet and inches.
I have it as follows:
#include <stdio.h>
#include <math.h>
void main()
{
int x=11;
float mm=0;
float answer=0;
do
{
printf("\nPleas e enter your metric millimeter. - ");
scanf("%f",&mm) ;
answer=mm*0.003 2808399;
printf("\n%.0f...
No activity results to display
Show More
Leave a comment: