Or instead of char file[30]; do a dynamic memory allocation : char* file = malloc(30); then you can do return f; and it will work fine because f ...
確定! 回上一頁