C Program to print number pattern using nested loop.
4 3 2 14 3 2 14 3 2 14 3 2 14 3 2 1 #include<stdio.h>int main(){ for(int i=1;i<=5;i++) { for(int j=4;j>=1;j–){printf(“%d”,j);} printf(“\n”); } return 0;} Are you looking for the Class 10 Computer Science SEBA Solution? You are in the right place! This guide provides accurate, well-structured, and easy-to-understand solutions to all topics…