#include <stdio.h>

void fun(int a){
    if(a<=0)
        return;
    printf("pre %d\n",a);
    fun(a-1);
    printf("in %d\n",a);
    fun(a-1);
    printf("out %d\n",a);
}

int main() {
    fun(3);
}

Embed on website

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