C/C++中如何表示上级和上上级路径?

       默认当前路径:code #include <stdio.h> int main() { FILE *fp = fopen("myData.txt", "w"); fprintf(fp, "%d", 123); fclose(fp); return 0; }       显式当前路径:io #include <stdio.h> int main() { // 在C中,'
相关文章
相关标签/搜索