MCPcopy Create free account
hub / github.com/Rustam-Z/cpp-programming / main

Function main

Lab_04/Source.cpp:7–19  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5#include <iostream>
6using namespace std;
7int main()
8{
9 for (int i = 1; i <= 5; i++)
10 {
11 for (int j = 1; j <= i; j++)
12 {
13 cout << "*";
14 }
15 cout << endl;
16 }
17 system("pause");
18 return 0;
19}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected