#include <unistd.h>
void alpha(char c)
{
    if (c < '9')
    {
        write(1, &c, 1);
        alpha(c+1);
    }
}
int main() {
    alpha('0');
    return 0;
}

Embed on website

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