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

51,934 answers

573 users

How to get the middle character from string in C

2 Answers

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

int main() {
    char s[] = "programming";
 
    int index = (int)(strlen(s) / 2);
 
    printf("%c", s[index]);
}


 
/*
run:
 
a
 
*/

 



answered Dec 2, 2020 by avibootz
0 votes
#include <stdio.h>
#include <string.h>

int main() {
    char s[] = "python";
 
    int len = strlen(s);
    int index = (int)(len / 2);
    
    if (len % 2 == 1) {
        printf("%c", s[index]);
    } else if (len % 2 == 0) {
        printf("%c", s[index - 1]);
        printf("%c", s[index]);
    }
 
    
}


 
/*
run:
 
th
 
*/

 



answered Dec 2, 2020 by avibootz
edited Dec 2, 2020 by avibootz

Related questions

1 answer 118 views
2 answers 196 views
1 answer 97 views
1 answer 92 views
1 answer 108 views
2 answers 111 views
2 answers 112 views
...