#c-programming
Read more stories on Hashnode
Articles with this tag
#include <stdio.h> int main() { int n, reverse = 0; printf("Enter an integer: "); scanf("%d", &n); while(n>0) { reverse =...