Posts by Rishabh Thukral

Author Biographical Info: Not available

Python string startswith() Method

By Rishabh Thukral

In this tutorial, we will learn about the Python string startswith() method. startswith() method in Python The startswith() method in Python checks the string and return the TrueÂ.... Read More

Find the most frequent word in a string in C++

By Rishabh Thukral

In this tutorial, we will learn about how to find the most frequent word in a string in C++. So, continue through the article. Introduction The string is a collection of words that.... Read More

Iterate through a String word by word in C++

By Rishabh Thukral

In this article, we will learn about how to iterate through a string word by word in C++. So, continue reading through the article…… Simple approach There will be a num.... Read More

Add a new line to text file in C++

By Rishabh Thukral

In this article, we are going to see how we can add a new line to a text file using C++. In the text file data is stored in the form of ASCII characters. In-text files,  EOL (End .... Read More

String push_back() function in C++

By Rishabh Thukral

In this tutorial, we will learn about the string push_back() to add a new character at the end of the string function in C++. So, continue reading it… push_back() function a.... Read More

String replace() function in C++

By Rishabh Thukral

In this tutorial, we will learn about the string replace() function in C++ with a suitable example. So continue reading it… The replace() function replaces the particular p.... Read More

Math nexttoward() function in C++

By Rishabh Thukral

In this tutorial, we will learn about how to use the nexttoward() function in C++. So continue through this article… nexttoward() function in C++ The nexttoward() function t.... Read More

Remove the Last Line from a Text File in C++

By Rishabh Thukral

In this tutorial, we will learn about how to Remove the Last Line from a Text File in C++. Opening a File fstream file; file.open("abc.txt",ios::in); //'in' is a type of file mode.... Read More

Related Posts