Reading a String that Contains Whitespaces

Reading a String that Contains Whitespaces

In many C++ primers and courses, one of the common exercises is: “Write a function that reads a string of characters, say, the title of a book, from a keyboard and either write it to a file or to the screen.”

Using the getline() member function for that purpose seems to be the right thing to do. However, it simply doesn’t work. The problem is that getline() treats the first whitespace it encounters as a string terminator. Thus, a book’s tile, a film’s name, or a person’s first name, and last name are chopped. To read a string that contains whitespaces, you should use the read() member function instead, which takes two arguments. The first argument is pointer to a char array large enough to contain the string to be read. The second argument is the maximal size of the string to be read (additional characters are discarded):

 void GetTitle(){  char title[50];  cin.read(buff, 49); //leave room for a terminating null  cout<
Share the Post:
Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular

XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved

AI is revolutionizing fraud detection

How AI is Revolutionizing Fraud Detection

Artificial intelligence – commonly known as AI – means a form of technology with multiple uses. As a result, it has become extremely valuable to a number of businesses across

AI innovation

Companies Leading AI Innovation in 2023

Artificial intelligence (AI) has been transforming industries and revolutionizing business operations. AI’s potential to enhance efficiency and productivity has become crucial to many businesses. As we move into 2023, several