-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfilehandling1.cpp
50 lines (44 loc) · 1.87 KB
/
filehandling1.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/*
Objective:- To demostrate write and read values using variables in/from file and usage of tellg() , tellp() , seekp() and seekg() function.
input parrameter :
name-> char type variable
course-> char type variable
rollNo-> int type variable
file->fstream type variable;
Defination :-
seekg() -> used to move the get pointer to a desired location with respect to a reference point.
tellg() -> used to know where the get pointer is in a file
seekp() -> used to move the put pointer to a desired location with respect to a reference point.
tellp() -> used to know where the put pointer is in a file.
*/
#include <iostream>
#include <fstream>
#define FILE_NAME "student.txt"
using namespace std;
int main()
{
int rollNo;
char name[20];
char course[20];
cout<<"ENTER STUDENT NAME : "<<endl;
cin.getline(name,20);
cout<<"ENTER STUDENT COURSE : "<<endl;
cin.getline(course,20);
cout<<"ENTER STUDENT ROLL NUMBER : "<<endl;
cin>>rollNo;
fstream file;
file.open(FILE_NAME,ios::out);
file<<name<<rollNo<<course;
cout<<"Current Position of file pointer is :"<<file.tellp()<<endl; //to tell curent position of pointer
file.seekp(-2,ios::cur);//to change a curent position to any position of pointer
cout<<"after seekp Position of file pointer is :"<<file.tellp()<<endl; //to tell curent position of pointer
file.close();
file.open(FILE_NAME,ios::in);
file>>name;
cout<<"Current Position of file pointer is :"<<file.tellp()<<endl; //to tell curent position of pointer
file.seekp(2,ios::beg);//to change a curent position to any position of pointer
cout<<"after seekp Position of file pointer is :"<<file.tellp()<<endl; //to tell curent position of pointer
cout<<"\t\t"<<name;
file.close();
return 0;
}