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).
1 2 3 4 5 6 | #include <iostream> using namespace std; int main() { cout<<"*"<<endl<<"**"<<endl<<"***"<<endl<<"****"<<endl; } |
Output:
