Pattern 1

user_6679955 avatar
user_6679955
c_cpp
02/09/2025 5:34 PM
188 B
19
Indexable
void nForest(int n) {
	 for(int i=0; i<n; i++){
     for (int j=0; j<n; j++){
        cout<< "* ";

     }
    cout<< endl;
    }
}
Editor is loading...
Leave a Comment