#include <stdio.h> #include <string.h> char *foo(void) { static char str[10]; strcpy(str, "Hello"); return str; } int main(void) ...
確定! 回上一頁