1
1 2
1 2 3
1 2 3 4
1 2 3
1 2
1
generate this output using for loop
Answers were Sorted based on User's Feedback
Answer / varsha shukla
#include<conio.h>
#include<stdio.h>
void main()
{
int i,j,k,l;
for(i=1;i<=4;i++)
{
for(k=i;k<=4;k++)
{
printf(" ");
}
for(j=1;j<=i;j++)
{
printf(" %d",j);
}
printf("\n");
}
for(i=3;i>0;i--)
{
for(l=i;l<=3;l++)
{
printf(" ");
}
for(j=1;j<=i;j++)
{
printf(" %d",j);
}
printf("\n");
}
getch();
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / narasimharao
#include<stdio.h>
#include<conio.h>
void main()
{
int i,j,k,n;
printf("Enter n value:");
scanf("%d",&n);
for(i=1;i<=n;i++)
{
for(k=i;k<n;k++)
{
printf(" ");
}
for(j=1;j<=i;j++)
{
printf("%d",j);
for(k=i;k<i+1;k++)
{
printf(" ");
}
}
printf("\n");
}
for(i=n-1;i>=1;i--)
{
for(k=i;k<n;k++)
{
printf(" ");
}
for(j=1;j<=i;j++)
{
printf("%d",j);
for(k=i;k<i+1;k++)
{
printf(" ");
}
}
printf("\n");
}
getch();
}
| Is This Answer Correct ? | 1 Yes | 2 No |
What are disadvantages of C language.
Is c weakly typed?
What does node * mean?
What is the meaning of int *x[]();?
What are the two types of structure?
what is the use of ~ in c lang?????
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.
how many argument we can pas in in a function
find the size of structure without using the size of function
Explain what are compound statements?
Explain about the constants which help in debugging?
The differences between Windows XP and Windows Visa