-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHello.c
56 lines (42 loc) · 1.2 KB
/
Hello.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#include <stdio.h>
#include <string.h>
void reverse_words(char *input_string) {
char *word_start = input_string;
char *word_end = input_string;
while (*word_end) {
if (*word_end == ' ') {
// Reverse the characters of the word
char *start = word_start;
char *end = word_end - 1;
while (start < end) {
char temp = *start;
*start = *end;
*end = temp;
start++;
end--;
}
word_start = word_end + 1;
}
word_end++;
}
// Reverse the last word
char *start = word_start;
char *end = word_end - 1;
while (start < end) {
char temp = *start;
*start = *end;
*end = temp;
start++;
end--;
}
}
int main() {
char input_string[100];
printf("Enter a string: ");
fgets(input_string, sizeof(input_string), stdin);
// Remove newline character from input
input_string[strcspn(input_string, "\n")] = 0;
reverse_words(input_string);
printf("Reversed string: %s\n", input_string);
return 0;
}