#define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <stdlib.h> int reverse(char *begin, char *end) { char temp; if (begin == NULL || end == NULL) { return 0; } while (begin < end) { temp = *begin; *begin = *end; *end = temp; begin++; end --; } return 0; } int reverse_process(char *data) { char *begin; char *end; begin = end = data; while (*end != '