Site icon T4Tutorials.com

Program to print stars (steric) in a pattern in C++ (C plus plus)

Program to print stars (steric) in a pattern in C++ (C Plus Plus)

In this latest tutorial, we will try to learn the program to print stars (steric) in a pattern in C++ (C Plus Plus).
#include <iostream>
using namespace std;
int main()
{
cout<<"*"<<endl<<"**"<<endl<<"***"<<endl<<"****"<<endl;
}

 Output:

Program to print stars (steric) in a pattern in C++ (C plus plus)
Program to print stars (steric) in a pattern in C++ (C plus plus)
Exit mobile version