Change the contents of the array "Student a Am I" to "I am a student"

Source: Internet
Author: User

There is a character array whose contents are: "Student a am i", please change the contents of the array to "i am a student". Requirement: library functions cannot be used. Only a limited space can be opened (the number of spaces is independent of the length of the string). #include <stdio.h> #include <assert.h>int my_len (char *str) {        int count=0;assert (str); while (*STR) {   count++;   str++;} Return count;} Void  reverse (char *start,char *end) {   while (start<end)     {      char tmp=*start;  *start=*end;  *end=tmp;   start++;  end--;   }}void rev (char *s) {  int len =my_len (s);   char *start=s;  char *end=s+len-1;  reverse (start,end);   while (*s)   {     start=s; while ((*s!= '   ') && (* S!= '))  {   s++; } end=s-1; reverse (start,end);  if (*s ==  '   ')       s++;  }  }int main () {char s[] = "Student a am i"; Rev (s);p rintf ("%s\n", s); System ("pause");    return 0;}


Change the contents of the array "Student a Am I" to "I am a student"

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.