str_word_reversed

This commit is contained in:
xw_y_am 2019-06-26 19:07:55 +08:00 committed by GitHub
parent 701d9717f3
commit d49628ba3a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

27
str_word_reversed.c Normal file
View File

@ -0,0 +1,27 @@
#include <stdio.h>
void show_word_reversed(char *str)
{
char sign, *end, *seek = str;
while (*seek != '.' && *seek != '?' && *seek != '!') seek += 1;
end = seek;
sign = *end;
*seek-- = 0;
for (; seek > str; seek--)
if (*seek == ' ') {
*seek = 0;
printf("%s ", seek + 1);
}
printf("%s%c\n", str, sign);
for (; seek < end; seek++)
if (*seek == 0)
*seek = ' ';
*end = sign;
}
int main()
{
char buf[] = "Let's test this program!";
show_word_reversed(buf);
return;
}