Pattern 5

user_6679955 avatar
user_6679955
c_cpp
02/09/2025 2:45 PM
192 B
24
Indexable
void seeding(int n) {
	 for(int i=0; i<n; i++){
     for (int j=n; j>i; j--){
        cout<< "* ";

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