#include <stdio.h>

int x,y,temp;

int main() {
    x=3;
    y=4;

    temp=x;
    x=y;
    y=temp;

    printf("x = %d\n", x);
    printf("y = %d", y);
}

Embed on website

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