How to add all the digits of a float number in C

1 Answer

0 votes
#include <stdio.h> 
#include <math.h> 
     
int main() 
{ 
	float f = 3.287154;

	long l = f * 1000000;

	int sum = 0;
    while (l != 0) {
    	int reminder = l % 10;
    	sum += reminder;
    	l /= 10;
 
    }    
	printf("%d", sum);  
       
    return 0; 
} 
     
     
     
/*
run:
     
30
   
*/

     
     
/*
run:
     
30
   
*/

 



answered Aug 24, 2019 by avibootz
edited Aug 24, 2019 by avibootz

Related questions

1 answer 210 views
210 views asked Jan 2, 2021 by avibootz
1 answer 150 views
1 answer 115 views
3 answers 355 views
...