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
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 |
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 |
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 |
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 |
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 |
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 |
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 |
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 |
What is the scope of global variable in c?
Develop a flow chart and write a c program to find the roots of a quadratic equation ax2+bx+c=0 using switch and break statement.
how can I convert a string to a number?
how should functions be apportioned among source files?
How can I find out how much memory is available?
what will be the output of this program main() { int i=1; while (i<=10); { i++; } }
Explain what are bus errors, memory faults, and core dumps?
out put of printf(ā%dā,printf(ram));
Is file a keyword in c?
what is the maximum no. of bytes calloc can allocate
3. Program to print all possible substrings. ex: String S St Str Stri Strin String t tr tri trin tring r
Method Overloading exist in c ?