Math, asked by aahil17, 2 months ago

Write a program to input a number and print the reverse ​

Answers

Answered by hkofficial654
1

#include<stdio.h>

int main()

{

int n, reverse=0, rem;

printf("Enter a number: ");

scanf("%d", &n);

while(n!=0)

{

Similar questions