#include <stdio.h>
#include <string.h>
int main() {
char g[100];
int o, l;
scanf("%s", g);
l = (int)(strlen(g));
for(o = 0; o < l; o++){
printf("%c", g[o] - 7);
}
printf(" \n");
return 0;
}
系統呼叫了 abort 函式!
*** stack smashing detected ***: terminated Aborted (core dumped)
???