MCPcopy Create free account
hub / github.com/codemistic/Data-Structures-and-Algorithms / main

Function main

CPP/pattern/squre_pattern.cpp:4–16  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2using namespace std;
3
4int 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected