WAP to generate the following pattern n=4 4444 i=4 333 i=3 22 i=2 1 i=1 #include<stdio.h> #include<conio.h> main( ) { int i,j,n; clrscr(); printf("\nEnter the value of n:"); scanf("%d",&n); for(i=n;i>=1;i--) { for(j=1;j<=i;j++) ...
FOR EVERY PROGRAMMER SOME SPECIAL PROGRAMS WITH THEORY.