sslogic.blogspot.com


{ City } chennai
< Country > india
* Profession *
User No # 47363
Total Questions Posted # 0
Total Answers Posted # 1

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 115
Users Marked my Answers as Wrong # 27
Questions / { sslogic.blogspot.com }
Questions Answers Category Views Company eMail




Answers / { sslogic.blogspot.com }

Question { Wipro, 41954 }

progrem to generate the following series
1
12
123
1234
12345


Answer

int main()
{
int i,j;
for(i=1;i<=5;i++)
{
for(j=1;j<=i;j++)
{
printf("%d\t",j);
}
printf("\n");
}
return 0;
}

Is This Answer Correct ?    115 Yes 27 No