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 133 views
2 answers 216 views
1 answer 112 views
1 answer 110 views
1 answer 119 views
2 answers 130 views
2 answers 132 views
...