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.

40,011 questions

51,958 answers

573 users

How to get the third digit of int number in C

2 Answers

0 votes
#include <stdio.h>
 
int main(void) {
    int number = 76594;
    char s[10];
    int N = 3;
     
    sprintf(s, "%d", number); 
    printf("%c\n", s[N - 1]);
     
    int x = s[N - 1] - '0';
    printf("%d\n", x);
      
    return 0;
}
  
  
  
/*
run:
  
5
5
  
*/

 



answered May 29, 2020 by avibootz
edited Jun 1, 2020 by avibootz
0 votes
#include <stdio.h>
 
int get_third_digit(int number) {
    char str[10];
    int third = 3;
    
    sprintf(str, "%d", number); 

    return str[third - 1] - '0';
}

int main(void) {
    int number = 76594;
    
    printf("%d\n", get_third_digit(number));
       
    return 0;
}
   
   
   
/*
run:
   
5

*/

 



answered Oct 3, 2023 by avibootz

Related questions

1 answer 129 views
1 answer 118 views
1 answer 100 views
1 answer 145 views
1 answer 158 views
1 answer 108 views
...