**
**
*
I am trying to make a pattern program although I Display the pattern but the intitution is that I think the my code is read able by anothers. Can u guide me very i can improve to write the code. Or optimise the code
#include
using namespace std;
int main() {
int row=9, col=5;
for(int i=1; i<=col; i++) {
for(int j=1; j<=i; j++) {
cout << “";
}
cout <<endl;
}
int count=col;
for(int i=count+1; i<=row; i++) {
for(int j=col-1; j>=1; j–){
cout << "”;
}
cout << endl;
col–;
}
return 0;
}