Files and Directories | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Files and Directories

can someone tell me ,how to include a file from another directory(not the presently working directory) in C/C++.

17th Jun 2019, 3:25 AM
Deepak Chekuri
1 Answer
+ 2
c++ #include <iostream> #include <fstream> using namespace std; int main() { ofstream MyFile; MyFile.open("test.txt"); MyFile << "Some text! \n"; MyFile.close(); }
17th Jun 2019, 4:12 AM
**🇦🇪|🇦🇪**
**🇦🇪|🇦🇪** - avatar