parkside's triangle..
create a program like this..
enter the size: 6
enter the seed: 1
output:
1
23
456
7891
23456
789123
sample2:
enter the size: 5
enter the seed: 3
output:
3
45
678
9123
45678
parkside should not exceed 10 while its seed should only be
not more than 9..
Answer Posted / prashant
#include<stdio.h>
#include<conio.h>
void main()
{
int i;
printf("enter the size");
scanf("%d",&n1);
printf("enter the seed");
scanf("%d",&n2);
for(i=1;i<n1;i++)
{
for(j=1;j<=i;j++)
{
printf("%d",j);
}
printf("\n");
}
getch();
}
Is This Answer Correct ? | 2 Yes | 9 No |
Post New Answer View All Answers
write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...
how we can make 3d venturing graphics on outer interface
What is a double c?
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
What are enums in c?
What are the types of pointers in c?
What is a node in c?
Can you assign a different address to an array tag?
What is the difference between variable declaration and variable definition in c?
Explain how do you list files in a directory?
swap 2 numbers without using third variable?
Give basis knowledge of web designing ...
Write a Program to accept different goods with the number, price and date of purchase and display them
When is a null pointer used?
Why c is called free form language?