program for following output using for loop?
1
2 2
3 3 3
4 4 4 4
5 5 5 5 5

Answers were Sorted based on User's Feedback



program for following output using for loop? 1 2 2 3 3 3 4 4 4 4 5 5 5 5 5..

Answer / natu

Hellow Sashi Ur wrong because Ur program is giving output as
1
1 2
1 2 3
1 2 3 4
1 2 3 4 5

but the expected output is
1
2 2
3 3 3
4 4 4 4
5 5 5 5 5
please refer and tell me

Is This Answer Correct ?    49 Yes 0 No

program for following output using for loop? 1 2 2 3 3 3 4 4 4 4 5 5 5 5 5..

Answer / lohith

#include<stdio.h>
#include<conio.h>
void main()
{
int i,j;
clrscr();

for(i=1;i<=5;i++)
{
for(j=1;j<=i;j++)
{
printf("%d",i);
}
printf("\n");
}
getch();
}

Is This Answer Correct ?    43 Yes 9 No

program for following output using for loop? 1 2 2 3 3 3 4 4 4 4 5 5 5 5 5..

Answer / devi

#include<stdio.h>
#include<conio.h>
void main()
{
int i,j;
clrscr();
for(i=1;i<=5;i++)
{
for(j=1;j<=i;j++)
{
printf("%d",i);
}
printf("\n");
}
getch();
}

Is This Answer Correct ?    19 Yes 2 No

program for following output using for loop? 1 2 2 3 3 3 4 4 4 4 5 5 5 5 5..

Answer / jayaraj.s

#include <stdio.h>
main()
{
int a,b;
for(a=1;a<=5;a++)
{
printf("\n%d",a);
for(b=1;b!=a;b++)
{
printf("%d",a);
}
}
getch();
}

Is This Answer Correct ?    8 Yes 2 No

program for following output using for loop? 1 2 2 3 3 3 4 4 4 4 5 5 5 5 5..

Answer / sampath

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

Is This Answer Correct ?    6 Yes 1 No

program for following output using for loop? 1 2 2 3 3 3 4 4 4 4 5 5 5 5 5..

Answer / pra japati apurv d

#include<stdio.h>
#include<conio.h>
void main()
{
int i,j;
clrscr();

for(i=1;i<=5;i++)
{
for(j=1;j<=i;j++)
{
printf("%d",i);
}
printf("\n");
}
getch();
}

Is This Answer Correct ?    4 Yes 0 No

program for following output using for loop? 1 2 2 3 3 3 4 4 4 4 5 5 5 5 5..

Answer / aky

#include<iostream.h>
#include<conio.h>
void main()
{
for(int i=1;i<=10;i++)
{
for(int j=1;j<=i;j++)
{
cout<<j;
}
cout<<endl;
}
}

Is This Answer Correct ?    4 Yes 3 No

program for following output using for loop? 1 2 2 3 3 3 4 4 4 4 5 5 5 5 5..

Answer / shashi kumar c.a

#include<stdio.h>
#include<conio.h>
void main()
{
int i,j;
clrscr();

for(i=1;i<=5;i++)
{
for(j=1;j<=i;j++)
{
printf("%d",j);
}
}
getch();
}

Is This Answer Correct ?    13 Yes 20 No

Post New Answer

More C Interview Questions

what are the advantages of a macro over a function?

0 Answers   TCS,


When you call malloc() to allocate memory for a local pointer, do you have to explicitly free() it?

2 Answers   Aloha Technology,


What is local and global variable in c?

0 Answers  


write a c program to check weather a particluar bit is set or not?

5 Answers   IBM,


What is structure padding in c?

0 Answers  






a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none

0 Answers  


write a program to find a given no. is divisible by 3 or not without using any arthimetic operators?

3 Answers   Broadcom, TCS,


Write a program to enter the name and age. If age>28 then find salary categories. if age<28 then find that you are gaduate or not.

1 Answers  


Explain the use of keyword 'register' with respect to variables.

0 Answers  


Explain about the functions strcat() and strcmp()?

0 Answers  


Is a house a mass structure?

0 Answers  


What is header file in c?

0 Answers  


Categories