Write a C program to print given numbers as a pyramid.
In this program we use the simple for statements to produce the patterns.
This program prints the following output,
1
232
34543
4567654
567898765
Read more about C Programming Language . and read the C Programming Language (2nd Edition). by K and R.
In this program we use the simple for statements to produce the patterns.
This program prints the following output,
1
232
34543
4567654
567898765
Read more about C Programming Language . and read the C Programming Language (2nd Edition). by K and R.
–>
/***********************************************************
* You can use all the programs on www.c-program-example.com
* for personal and learning purposes. For permissions to use the
* programs for commercial purposes,
* contact [email protected]
* To find more C programs, do visit www.c-program-example.com
* and browse!
*
* Happy Coding
***********************************************************/
#include<stdio.h>
void display(int start, char *str){
int i,j;
for(i=start; i<=(start+start); i++)
printf("%c",str[i]);
for(j=i-2;j>=start;j--)
printf("%c",str[j]);
}
main(){
char str[]="123456789";
int i, j;
for(i=0;i<5;i++){
display(i, str);
printf("n");
}
}
Read more Similar C Programs
Graphics in C
C Strings
C Aptitude
You can easily select the code by double clicking on the code area above.
To get regular updates on new C programs, you can Follow @c_program
You can discuss these programs on our Facebook Page. Start a discussion right now,
our page!
Share this program with your Facebook friends now! by liking it
(you can send this program to your friend using this button)
Like to get updates right inside your feed reader? Grab our feed!
(c) www.c-program-example.com