/*write a program to genrate star pattern as shown below using while loop*/
*
**
***
****
*****
|
~ Б0ЯИ Τ0 С0δЭ ~
|
![]() |
| 15Aug2009,06:55 | #2 |
|
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. |
|
Invasive contributor
|
![]() |
| 15Aug2009,19:11 | #3 |
|
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.. |
|
Light Poster
|
|
| 15Aug2009,20:27 | #4 |
|
Invasive contributor
|
![]() |
| 15Aug2009,21:56 | #5 |
|
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... |
|
Light Poster
|
|
| 16Aug2009,01:38 | #6 |
|
Programme:
Code:
#include<stdio.h>
#include<conio.h>
main( )
{ int i,j;
clrscr( );
i=1;
while(i<=5)
{
printf(" ");
j=1;
while(j<=i)
{
printf(" * ");
j++;
}
printf("\n");
i++;
}
getch( );
}
Code:
*
* *
* * *
* * * *
* * * * *
|
|
Light Poster
|
|
| 16Aug2009,01:43 | #7 |
|
thank u for rply ,
i m beginner in c lang, but not at all lazy ok. |
|
Invasive contributor
|
![]() |
| 16Aug2009,11:47 | #8 |
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... |
|
Mentor
|
![]() |
| 16Aug2009,13:43 | #9 |
|
Quote:
Originally Posted by mrunalini 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. |
|
Invasive contributor
|
![]() |
| 16Aug2009,18:37 | #10 |
|
well said xp...
|





Good...
