এটি একটি সম্পূর্ণ ফাইল std::string-এ C++
-এ পড়ার একটি সহজ উপায়অ্যালগরিদম
Begin Take the filename as inputstream. Declare a string variable str. Read the file till the end by using rdbuf(). Put the data into st. Print the data. End.
উদাহরণ কোড
#include<iostream> #include<fstream> #include<sstream> #include<string> using namespace std; int main() { ifstream f("a.txt"); string str; if(f) { ostringstream ss; ss << f.rdbuf(); str = ss.str(); } cout<<str; }
ইনপুট
a.txt data file contains the string “hi”
আউটপুট
hi