Skip to main content

PATTERN 3


/* CLICK THE PIC 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",i);
}
printf("\n");
}
getch();
}


SIMPLE PROGRAMS
FUNCTIONS


NUMBERS


STRINGS AND CHARACTERS




Comments

Popular posts from this blog

unix commands