str_word_reversed
This commit is contained in:
parent
701d9717f3
commit
d49628ba3a
27
str_word_reversed.c
Normal file
27
str_word_reversed.c
Normal 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;
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user