Write a program for the following series?
1
121
12321
1234321
123454321
12345654321
1234567654321
123456787654321
12345678987654321
1234567890987654321
123456789010987654321
12345678901210987654321
1234567890123210987654321
.........1234321............
..........123454321............
..........12345654321............
7
8
9
0
1
Pls............?
Answer Posted / vignesh1988i
#include<stdio.h>
#include<conio.h>
void main()
{
int i,j,k,a,n,s,p;
clrscr();
printf("enter the no. of lines :");
scanf("%d",&n);
a=n;
j=1;
for(i=1;i<=n;i++)
{
for(k=1;k<=(a-1);k++)
printf(" ");
a--;
for(k=1,p=1;k<=(i-1);)
{
if(!((k%10)^0))
p=0;
printf(%d",p);
k++; p++;
}
if(!((i%10)^0)
j=0;
printf("%d",j);
j++;
s=--p;
if(i>10)
{
for(;s>=0;s--)
printf("%d",s);
s=i-(p+1)-1;
}
for(;s>0;s--)
printf("%d",s);
printf("\n");
}
getch();
}
thank u , hope this works
| Is This Answer Correct ? | 9 Yes | 4 No |
Post New Answer View All Answers
What is malloc calloc and realloc in c?
What is break in c?
What is the difference between c &c++?
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)
What is LINKED LIST? How can you access the last element in a linked list?
How many keywords (reserve words) are in c?
Explain the use of 'auto' keyword in c programming?
what are bit fields? What is the use of bit fields in a structure declaration?
What happens if a header file is included twice?
What are local static variables? How can you use them?
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
What is the use of ?
Explain the term printf() and scanf() used in c language?
a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above
What are pointers? What are different types of pointers?