Output for following program using for loop only
*
* *
* * *
* * * *
* * * * *
Answer Posted / sampath
for(i=0;i<=5;i++){
for(j=i;j<=i;j++)
printf("*");
printf("\n");
}
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
What is the difference between formatted&unformatted i/o functions?
What are the Advantages of using macro
How can I change their mode to binary?
What are the 5 organizational structures?
Why can’t constant values be used to define an array’s initial size?
How are strings stored in c?
Can we change the value of constant variable in c?
Calculate 1*2*3*____*n using recursive function??
Why doesnt that code work?
How would you rename a function in C?
What is methods in c?
How do you sort filenames in a directory?
What is nested structure with example?
Explain what does the format %10.2 mean when included in a printf statement?
Difference between pass by reference and pass by value?