#include <stdio.h>

int a, b, temp;

int main() {
    a=5;
    b=7;

    temp=a;
    a=b;
    b=temp;

    printf("a = %d\n", a);
    printf("b = %d", b);
}

Embed on website

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