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

51,912 answers

573 users

How to reverse the first N characters of a string in C

1 Answer

0 votes
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
 
void strrev_first_n_chars(char *s, int pos) { 
    int len = 0;
     
    while (s[len] != '\0')
      len++;
  
    int end = pos - 1;
    for (int i = 0; i < pos - 1 && i < len - 1; i++, end--) {
      char tmp = s[i];
      s[i] = s[end];
      s[end] = tmp;
   }
  
} 
 
int main() {
    char *s = strdup("abcdefg"); 
    int pos = 3; 
     
    strrev_first_n_chars(s, pos);
  
    puts(s);
     
    free(s);
     
    return 0;
}
 
   
   
/*
run:
   
cbaedfg
   
*/

 



answered Jun 24, 2019 by avibootz
edited Jun 25, 2019 by avibootz

Related questions

1 answer 141 views
1 answer 146 views
1 answer 151 views
1 answer 115 views
1 answer 196 views
1 answer 170 views
1 answer 119 views
...