How to search for a particular character in a C++ string ?
Hi, In order to search for a particular character in a C++ string, use the following code.
Hi, In order to search for a particular character in a C++ string, use the following code.
Three file objects are created using the fstream class one for first, second for second file and third for the appended file. The first two files are opened in the input mode and third in the append mode. The first file is opened and checked for error condition if the file exist its contents are… Read More »
Two file objects are created using the fstream class for the two files, one for source file and another destination file. The first file is opened and its contents are copied to the second file using get ( ) and put ( ) function. Each time the source file is opened error checking is done… Read More »