About file streamWhen i write to a file and close it does it immediately writes to a disk or do i have to Sleep() som...
About reading from file to stringAny possible problems with this code? [code] int main() { std::fstream in("file.txt", std::io...
About fstream seekgI open file like this: [code] std::fstream in(fn, std::ios::in | std::ios::binary); if(!in.is_op...
set of functionsStill adds duplicates: [code] sFun.insert(f1); sFun.insert(f3); sFun.insert(f2); sFun.insert(f4)...
set of functionsThat's not it. Whole code to test: [code] #include <iostream> #include <string> #include <functiona...