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,874 questions

51,798 answers

573 users

How to check if the digits before and after the decimal point are equal in C

2 Answers

0 votes
#include <stdio.h>
 
int is_equal(char *strnum);
  
int main() {
    printf("%d", is_equal("893.893"));  
      
    return 0;
}
  
int is_equal(char *strnum) {
   int left, right;
  
   sscanf(strnum, "%d.%d", &left, &right);
  
   return left == right;
}
  
  
  
/*
run:
  
1
  
*/

 



answered Nov 13, 2024 by avibootz
edited Nov 13, 2024 by avibootz
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 is_equal(double d) {
    int left, right;
    char strnum[32] = "";
    
    sprintf(strnum, "%f", d);
    removeTrailingZeros(strnum);
    
    sscanf(strnum, "%d.%d", &left, &right);

    return left == right;
}
 

int main() {
    double d = 893.893;

    printf("%d", is_equal(d));  
     
    return 0;
}


 
/*
run:
 
1
 
*/
 

 



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

Related questions

...