| 2 | using namespace std; |
| 3 | |
| 4 | int main() { |
| 5 | |
| 6 | int size = 5; |
| 7 | |
| 8 | for (int i = 0; i < size; i++) { |
| 9 | |
| 10 | for (int j = 0; j < size; j++) { |
| 11 | cout << "*"; |
| 12 | } |
| 13 | cout << "\n"; |
| 14 | } |
| 15 | return 0; |
| 16 | } |
nothing calls this directly
no outgoing calls
no test coverage detected