/* To read all File from Current Directory */ #include<iostream> #include<dirent.h> using namespace std; int main() ...
Read More
Showing posts with label File Operation in Cpp. Show all posts
Showing posts with label File Operation in Cpp. Show all posts
Write a program To merge two File
/* To merge two File */ #include<iostream> #include<fstream> using namespace std; int main() { ifstream f1,f2;...
Read More
Write a program for Bank Management Application
/*Bank Management Application*/ #include<iostream> #include<fstream> #include<stdlib.h> using namespace std; void a...
Read More
Write a program to Show the File Data
/* Show the File Data */ #include<iostream> #include<fstream> using namespace std; int main() { char str[256];...
Read More
Write a program to perform File Operation
/* File Operation */ #include<iostream> #include<fstream> using namespace std; class Student { int id; c...
Read More
Write a Program for Encrypting File Data
/* Encrypting File Data */ #include<iostream> #include<fstream> using namespace std; int main() { char c; ...
Read More
Write a Program for Decrypting File Data
/* Decrypting File Data */ #include<iostream> #include<fstream> using namespace std; int main() { char c; ...
Read More
Write a program to Copy one file into another file
/* Copy one file into another file */ #include<iostream> #include<fstream> using namespace std; int main() { /*...
Read More
Subscribe to:
Posts (Atom)