Files and Directories | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
+ 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 Resposta
+ 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