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:
```
@@@@@
@@@@@
@@@@@
@@@@@
@@@@@
@@@@@
@@@@@
@@@@@
@@@@@
@@@@@
```
You might also like to view...
The language ______ is a possible successor to HTML.
Fill in the blank(s) with the appropriate word(s).
What does the following program do?
```
// Ex07_17.cpp
// What does this program do?
#include
Which of the following is a fully qualified structured reference?
What will be an ideal response?
All nodes in the tree can have an outdegree of _____.
A. one B. two C. zero, one, or more D. more than one