This blog is about providing theory as well as simple executable codes of different programming languages such as java, C, C++, and web programming, etc. This blog will be helpful to the IT students to learn about programming.

Showing posts with label program to demonstrate writing an object to a data file and reading it back. Show all posts
Showing posts with label program to demonstrate writing an object to a data file and reading it back. Show all posts

Tuesday, February 28, 2023

Write a program to demonstrate writing an object to a data file and reading it back.

February 28, 2023 0
 Here is a program that demonstrates writing an object to a data file and reading it back:#include <iostream>#include <fstream>using namespace std;class Student {    private:        string name;        int roll;    public:        void setName(string n) {            name = n;        }        void...

Slider Widget