-->

write and Save data to File in C++ using FSTREAM

 How to write and Save data to File in C++ using FSTREAM Header file



Step 1:
        Subscribe To my Channel

                                    YouTube Channel

Step 2:

           //////Add header file 

            #include <iostream>

            #include <fstream>

            using namespace std;

        /////create main function

            int main()

            {    

                        string name;

                        int pin;

                        cout<<"Name: ";

                        getline(cin,name);

                        cout<<"Pin: ";

                        cin>>pin;

            /////create file with the name you want e.g. DATA.text

                        ofstream obj("DATA.text");

            /////pass data to file through insertion operator

                        obj << name << pin;           

            }

        /////file writing and saving is complete.

                                                      Download File Here        

⚠⚠⚠⚠⚠⚠if the link is not correct please let me know by commenting here⚠⚠⚠⚠⚠⚠