Write a C++ program fragment that will read a line of text and echo the line with all uppercase letters deleted. Declare variables and include necessary header.

What will be an ideal response?


```
#include
. . .
char next;
cout << “Enter a line of text: \n”;
do
{
cin.get(next);
if(!isupper(next))
cout << next;
} while (next != ‘n’);
```

Computer Science & Information Technology

You might also like to view...

Unlike other domains of the BSIMM, the practices of the _______________ domain focus more on strategic aspects of developing secure software.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

In a query, the Where and Order By clauses are optional parts of the syntax.

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

Computer Science & Information Technology

The ________ Fields feature maps the predefined field names to the field names in the data source

Fill in the blank(s) with correct word

Computer Science & Information Technology

____________________ is any idea or creation of the human mind.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology