1.

WAP to print the numbers from 20 to 1 in descending order using DO WHILE statement

Answer»

#include#includevoid main{ INT n=20; do { printf("%d ", n) ; n=n-1; } while ( n>1) ;RETURN 0;}



Discussion

No Comment Found