#include<stdio.h>
int main()
{
int i,j;
for(i=1; i<5; i++)
{
for(j=0; j<i; j++){
printf("*");
}
printf("\n");
}
return i;
}
Download Solved Assignments 2017-2018, Solved Question Papers Best Answers from Yahoo.com, Quora.com, Stackoverflow.com, Ignou.ac.in, Solved Assignments, Solution to any question
#include<stdio.h>
int main()
{
int i,j;
for(i=1; i<5; i++)
{
for(j=0; j<i; j++){
printf("*");
}
printf("\n");
}
return i;
}
0 comments:
Post a Comment
Let us know your responses and feedback