Open In App

C++ program to read file word by word

Last Updated : 14 Feb, 2023
Comments
Improve
Suggest changes
1 Like
Like
Report

Given a text file, extract words from it. In other words, read the content of file word by word. Example : 

Input: And in that dream, we were flying.
Output:
And
in
that
dream,
we
were
flying.

Approach : 1) Open the file which contains string. For example, file named "file.txt" contains a string "geeks for geeks". 2) Create a filestream variable to store file content. 3) Extract and print words from the file stream into a string variable via while loop. 

Output:

geeks
for
geeks.

Time Complexity: O(N) // going through the entire file

Auxiliary Space: O(1)


Next Article

Similar Reads