Twitter Feed Facebook Google Plus Youtube

Adsense responsive

Recent Post below header

Saturday 16 February 2013

C PROGRAM: TO PRINT PATTERN OF 12345

CODING:
#include<conio.h>
#include<stdio.h>
void main()
{
 int i,j;
 clrscr();
 for(i=1;i<=5;i++)
 {
  for(j=1;j<=i;j++)
  {
   printf("%3d",i);
  }
  printf("\n");
 }
 getch();
}


CODING

OUTPUT

For any query or suggestion please comment below...

No comments:

Post a Comment