progrem to generate the following series
1
12
123
1234
12345
Answer Posted / srsabariselvan
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 |
Post New Answer View All Answers
hai iam working in sap sd module for one year and working in lumax ind ltd in desp department but my problem is i have done m.b.a in hr/marketing and working sap sd there is any combination it. can you give right solution of my problem. and what can i do?
What are header files and explain what are its uses in c programming?
Which is best book for data structures in c?
define string ?
difference between native and cross compilers
What are the types of bitwise operator?
What is typeof in c?
What does the message "automatic aggregate intialization is an ansi feature" mean?
How can I read/write structures from/to data files?
What is data type long in c?
What is dangling pointer in c?
Do you know pointer in c?
What 'lex' does?
What is the difference between malloc calloc and realloc in c?
What is fflush() function?