123456789101112131415161718192021
#include <iostream> #include <fstream> int main() { std::fstream f1; std::fstream f2; char c; f1.open("exam1.txt"); while (f1>>c) { f1.seekg(-1,std::ios::cur); f1<<char(toupper(c)); } f1<<' '; f2.open("exam2.txt"); while (f2.get(c)) f1<<c; f1.close(); f2.close(); }
f1
f1.clear();