What does the following program segment do?
```
for (unsigned int i{1}; i <= 5; i++) {
for (unsigned int j{1}; j <= 3; j++) {
for (unsigned int k{1}; k <= 4; k++) {
cout << '*';
}
cout << endl;
}
cout << endl;
}
```
```
****
****
****
****
****
****
****
****
****
****
****
****
****
****
****
```
Computer Science & Information Technology
You might also like to view...
?Which of the following Hypertext Markup Language (HTML) grouping elements contains a single item from an ordered or unordered list?
A. ?nav B. ?pre C. ?li D. ?div
Computer Science & Information Technology
Which IP addresses correspond to each MAC address?
What will be an ideal response?
Computer Science & Information Technology