20 lines
389 B
C
20 lines
389 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
int main() {
|
|
int n; /* Number to Be Reversed */
|
|
|
|
/* Prompt for number */
|
|
printf("Enter a 3 digit integer: ");
|
|
scanf("%d", &n);
|
|
|
|
/* Define the digits */
|
|
int d1 = n / 100;
|
|
int d2 = (int)(n / 10) - d1 * 10;
|
|
int d3 = n - (d1 * 100 + d2 * 10);
|
|
|
|
/* Print the digits in reverse */
|
|
printf("Reverse of digits: %d%d%d\n", d3, d2, d1);
|
|
|
|
return 0;
|
|
}
|