#include <stdio.h>

int main() {
    int n = 1204;
    
    while (n > 0) {
        int digit = n % 10;
        printf("%d", digit);
        n = n / 10;
    }

    printf("\n");
    return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: