mac使用C语言open函数的相对路径
mac使用C语言open函数的相对路径
在用mac学习C语言fopen函数时,对路径问题产生了一点疑惑。
#include <stdio.h>
int main()
{
FILE *fp = NULL;
fp = fopen("/tmp/test.txt", "w+");
fprintf(fp, "This is testing for fprintf...\n");
fputs("This is testing for fputs...\n", fp);
原创
2021-03-11 14:36:39 ·
1627 阅读 ·
0 评论