标签: xcode7
我有以下代码部分。我正在使用XCode。我应该在哪里放置source.txt和target.txt以便可以访问?
std::ifstream fin("source.txt"); std::ofstream fout("target.txt"); fout<<fin.rdbuf(); //sends the text string to the file "target.txt" system("pause"); return 0;