Q4. Pattern Series using nested loop
#include<stdio.h>
#include<conio.h>
void main()
{
int i,j,n;
clrscr();
printf("Enter number of rows: ");
scanf("%d",&n);
for(i=1;i<=n;i++)
{
for(j=n;j>=i;j--)
{
printf("%d ",j);
}
printf("\n");
}
getch();
}
5 4 3 2 1
5 4 3 2
5 4 3
5 4
5
5 4 3 2
5 4 3
5 4
5
Code is working perfectly now. Thank for messaging the mistake