Answer the following statements true (T) or false (F)

1. To get a complete line of 70 or so character into a C-string is as simple as declaring a long enough C-string and then using the >> operator to extract the line from the input.
2. To read a character at a time, or to write a character at a time, declare a character
variable ch and write this:
```
cin >> ch;
```
3. Indexing for Standard string objects does not range check/
4. You can assign a standard string to a C-string variable.
5. It is possible to use a standard string with a string member function as source for the strcpy or strcat functions.

1. False.
2. False.
3. True
4. False
5. True

Computer Science & Information Technology

You might also like to view...

The ________ function is used to determine the number of cells that contain a numeric value

A) COUNT B) COUNTA C) SUM D) AVERAGE

Computer Science & Information Technology

The Windows 10 Firewall is which of the following types?

A) Packet filtering firewall B) Application gateway firewall C) Stateful packet inspection firewall D) Circuit gateway firewall

Computer Science & Information Technology