#include <stdio.h> #include <string.h> char splited[9]; char str[102]; int main() { int len = 0, i = 0; memset(str, '\0', sizeof(str)); memset(splited, '\0', sizeof(splited)); if (fgets(str, sizeof(str), stdin) != NULL) { len = strlen(str) - 1; while (i + 8 < len) { memcpy(splited, st...