+ 3
How to print star questin in easy way in c++
* * * * * * * * * * * * * * * *
3 Answers
+ 5
Here's my code:
https://code.sololearn.com/cEmFBdhwCvlu/?ref=app
+ 3
i don't understand when while loop works
+ 2
In general, a while loop is used if you want an action to repeat itself until a certain condition is met i.e. if statement. And a for loop is used when you want to iterate through an object. i.e. iterate through an array.