Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,870 questions

51,793 answers

573 users

How to count the digits before and after the decimal point in C

1 Answer

0 votes
#include <stdio.h>
#include <math.h>
#include <string.h>

void removeTrailingZeros(char *str) {
    int len = strlen(str);
    
    while (len > 0 && str[len - 1] == '0') {
        str[len - 1] = '\0';
        len--;
    }
}

int main() {
    char s[32];
    double d = 345912.8036;
    int left, right;
  
    sprintf(s, "%f", d);
    removeTrailingZeros(s);
  
    sscanf(s, "%d.%d", &left, &right);
 
    printf("Total left digits: %d\n\r", (int)log10(left) + 1);
    printf("Total right digits: %d\n\r", (int)log10(right) + 1);
      
    return 0;
}
  
  
  
/*
run:
  
Total left digits: 6
Total right digits: 4
  
*/

 



answered Nov 13, 2024 by avibootz
edited Nov 13, 2024 by avibootz
...