diff options
| author | Syndamia <kamen@syndamia.com> | 2024-04-03 17:47:07 +0300 |
|---|---|---|
| committer | Syndamia <kamen@syndamia.com> | 2024-04-03 17:47:07 +0300 |
| commit | 44d085f265583f0e3cbef294bbe2c8e300aaa452 (patch) | |
| tree | 4899165f82a51beca1d4726db441a2749b628b9f /week06/Exercise03.cpp | |
| parent | 6a8154ad7f2cbfbb2ae4f2ddda1cd0db0e430e44 (diff) | |
| download | oop-2023-solutions-44d085f265583f0e3cbef294bbe2c8e300aaa452.tar oop-2023-solutions-44d085f265583f0e3cbef294bbe2c8e300aaa452.tar.gz oop-2023-solutions-44d085f265583f0e3cbef294bbe2c8e300aaa452.zip | |
[w6] Added exercise descriptions and solutions to 1-9
Diffstat (limited to 'week06/Exercise03.cpp')
| -rw-r--r-- | week06/Exercise03.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/week06/Exercise03.cpp b/week06/Exercise03.cpp new file mode 100644 index 0000000..f4f0229 --- /dev/null +++ b/week06/Exercise03.cpp @@ -0,0 +1,16 @@ +#include <fstream> +#include <iostream> + +int main() { + char fileName[1024]; + std::cin.getline(fileName, 1024); + + std::ofstream file(fileName); + if (!file.is_open()) { + std::cout << "Couldn't open file!" << std::endl; + return 1; + } + + file << "Hello World!"; + file.close(); +} |
