#include <stdio.h>

int main() {
    int T = 0;
    int *R;
    R = &T;
    while (T < 5) {
        printf("%d (住所:",T);
        printf("%p",R);
        puts(")");
        *R=T+1;
    }
    
    return 0;
}

Embed on website

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