Skip to main content

PATTERN 2

/* click the picture to enlarge it /*
#include<stdio.h>
#include<conio.h>
void main()
{
int n,i,j;
clrscr();

printf("enter a number");
scanf("%d",&n);
for(i=n;i>=1;i--)
{
for(j=1;j<=i;j++)
{
printf("%d",j);
}
printf("\n");
}
getch();
}






SIMPLE PROGRAMS
FUNCTIONS


NUMBERS


STRINGS AND CHARACTERS

Comments

Popular posts from this blog

unix commands