How to cyclically rotate a string left by one char in C

1 Answer

0 votes
#include <stdio.h>
#include <string.h>
  
int main() {
    char s[50] = "c++ c python java php";
    char ch = s[0];
  
    strcpy(s , s + 1);
    s[strlen(s)] = ch;
    puts(s);
     
    ch = s[0];    
    strcpy(s , s + 1);
    s[strlen(s)] = ch;
    puts(s);
}
   
  
  
   
/*
run:
    
++ c python java phpc
+ c python java phpc+
  
*/

 



answered Apr 3, 2019 by avibootz
edited Apr 3, 2019 by avibootz

Related questions

...