Write a program in c to print
1
121
12321
1234321
123454321
Answer Posted / mohammedayub.y(c.i.e.t)
#include<stdio.h>
#include<conio.h>
int main()
{
int i,j,n,k;
printf("enter the number :");
scanf("%d",&n);
for(i=1;i<=n;i++)
{
for(k=n;k>i;k--)printf(" ");
for(j=1;j<=i;j++)
{
printf("%d",j);
}
if(i>1)
{
for(j=i;j>1;j--)
{
printf("%d",j-1);
}
}
printf("\n");
}
getch();
return 0;
}
| Is This Answer Correct ? | 72 Yes | 28 No |
Post New Answer View All Answers
What is a built-in function in C?
What is the use of pointers in C?
Are pointers integers in c?
Explain how do you sort filenames in a directory?
Write a code to generate a series where the next element is the sum of last k terms.
What is a class c rental property?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
Where static variables are stored in c?
Sir,please help me out with the code of this question. Write an interactive C program that will encode or decode multiple lines of text. Store the encoded text within a data file, so that it can be retrieved and decoded at any time. The program should include the following features: (a) Enter text from the keyboard, encode the text and store the encoded text in a data file. (b) Retrieve the encoded text and display it in its encoded form. (c) Retrieve the encoded text, decode it and then display the decoded text. (d) End the computation. Test the program using several lines of text of your choice.
What is ponter?
how do you execute a c program in unix.
Write a program in c to replace any vowel in a string with z?
What's a good way to check for "close enough" floating-point equality?
What are logical errors and how does it differ from syntax errors?
What is #include stdio h?