0
How can I write a code to repeat a number n times using while loop and for loop in C
Smart people please answer
5 ответов
+ 1
cycle lessons are covered starting with Lesson 8.1 of your C course. Be consistent and patient, study each lesson carefully step by step and you will answer your own question
0
Hi! Please, show us your effort!
0
Ask for help, do not ask for solutions. Show us your code and we will help you with your doubt. 😜
0
May be you will not BELIVE me but I have wrote code using while in laptop but it is not giving any output
And so for showing you I have to take it from my laptop
Don't tell me complete way just tell me some clue, I will thank to you please
0
while(condition) {
// do something.
// if your loop depends on the increment / decrement of a number, remember to increment / decrement your variable here. e.g: n++
}