神勇发箍

文章
7
资源
0
加入时间
2年10月17天

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

默认当前路径:#include int main(){ FILE *fp = fopen("myData.txt", "w"); fprintf(fp, "%d", 123); fclose(fp); return 0;} 显式当前路径:#include int main(){ // 在C中,'\'表示转义,故要用双斜杠