What does the following program do?

```
// Printing.cpp
#include
using namespace std;

int main() {
for (int i{1}; i <= 10; i++) {
for (int j{1}; j <= 5; j++) {
cout << '@';
}

cout << endl;
}
}
```

This program outputs 10 rows of five @ symbols. Ouput:

```
@@@@@
@@@@@
@@@@@
@@@@@
@@@@@
@@@@@
@@@@@
@@@@@
@@@@@
@@@@@
```

Computer Science & Information Technology

You might also like to view...

What are two advantages to setting up a default document template for a library?

What will be an ideal response?

Computer Science & Information Technology

You can enter data into records using a form that includes fields from one or more tables.

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

Computer Science & Information Technology