#include <iostream>
using namespace std;
int main(){
for(int i = 1; i <= 5; i++){
cout << "****" << endl;
/* MyLearnings:- cout << i << "****" << endl; -> this will print value of i +patterns
so keep in mind. */
}
return 0;
}
No comments:
Post a Comment