#include <stdio.h>

int main() {
    int a = 10, b = 20;
    int *pa = &a, *pb = &b, *pt;
    pt = pa;   
    pa = pb;
    pb = pt;
    printf("%d, %d", *pa, *pb);
    
    return 0;
}

Embed on website

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