![]() |
star pttern genration program in c laguage using while loop
/*write a program to genrate star pattern as shown below using while loop*/
* ** *** **** ***** |
Re: star pttern genration program in c laguage using while loop
It's not a very hard task to do.
Don't ask us for answers to you homework. Show us your progress (your code till now), and we would be happy to help. |
Re: star pttern genration program in c laguage using while loop
If you are asking for this code, you are lazy to try it out...
Hint - Use the value of variable i (if i = 0 to 5) to print "*" that many times... Trust me we can tell you the code, you'll pass your homework, but wont get programming!! Do it yourself.. |
Re: star pttern genration program in c laguage using while loop
:pleased:
Quote:
|
Re: star pttern genration program in c laguage using while loop
try it, paste it if you get it, if you don't, post what you got till then...
these patten generating will get you how to use your code repeatedly....there are many levels to this * generation...so doing it will clear your programming concept... All the best... |
Re: star pttern genration program in c laguage using while loop
Programme:
Code:
#include<stdio.h>Code:
* |
Re: star pttern genration program in c laguage using while loop
thank u for rply ,
i m beginner in c lang, but not at all lazy ok. Quote:
Quote:
|
Re: star pttern genration program in c laguage using while loop
:) Good...
I recommend using for loop instead of while, as you can initialize, condition and increment/decrement in the same line, moreover you can skip any or all part of it (i.e. initialize, condtion and inc/decrement) thus for a programmer its more visible and clear to understand.... Try doing this pattern... * ** *** ** * If you want i can give you lot of patterns to practice, which will help you improve your skills... Have fun... |
Re: star pttern genration program in c laguage using while loop
Quote:
Next time, to avoid the same problem, it would be a good idea to post some code along with an explanation of where you're stuck. Say what the program isn't doing that you expect, what input you gave, and what the program should do, then we stand a good chance of solving it simply by looking at the code. |
Re: star pttern genration program in c laguage using while loop
well said xp...
|
| All times are GMT +5.5. The time now is 00:07. |