write a program whose output will be-
1
12
123
1234
Answer Posted / chaitali shinde
mian()
{
int i,j;
for(i=1;i<=5;i++)
{
for(j=1;j<=i;j++)
{
printf("1");
1++;
}
printf("\n");
}
getch();
}
| Is This Answer Correct ? | 8 Yes | 16 No |
Post New Answer View All Answers
What does calloc stand for?
What is advantage of pointer in c?
What is extern keyword in c?
What happens if you free a pointer twice?
code for replace tabs with equivalent number of blanks
Write a program to input the price of 1 burger and the number of burgers eaten by a group of friends .print the total amount to be paid by the group?
Explain modulus operator.
why wipro wase
Using which language Test cases are added in .ptu file of RTRT unit testing???
What are the two types of structure?
what is the difference between class and unio?
Is it fine to write void main () or main () in c?
What is preprocessor with example?
Explain 'bit masking'?
What are lookup tables in c?