我想从c ++文件中获取输入。我正在使用Visual Studio2015。用于从文件中获取输入的示例代码函数是:
#define INPUT_FILE_NAME "input.txt"
#define V 15
int total number=0;
double px[V];
double py[V];
void fileInput()
{
FILE *fp;
char cwd[1024];
if (getcwd(cwd, sizeof(cwd)) == NULL) //Directory not found
{
perror("getcwd() error - Current directory not found !!");
exit(0);
}
strcat(cwd, "\\");
strcat(cwd, INPUT_FILE_NAME);
fp = fopen(cwd, "r");
int i = 0;
fscanf(fp, "%d", &start);
while (fscanf(fp, "%lf", &px[i]) != EOF)
{
fscanf(fp, "%lf", &py[i]);
i++;
total_number++;
}
}
我的输入文件格式如下:
2
0 1
2 1
但是,当我编译时,出现类似以下错误:标识符'getcwd'未定义。有什么方法可以代替此功能,以便获得相同的输出吗?
最佳答案
尝试标题#include“ direct.h”可能是为什么...
关于c - 从c中的文件获取输入时出错,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39550792/