#include <stdio.h>

void main() {
    void scambia(int a,int b) {
    int temp;
    temp=a;
    a=b;
    b=a;
    }
    printf("a = %d\n", );
    printf("b = %d", );
}

Embed on website

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