#include <stdio.h> 

void change(int x) {
    x = 0;
}

int main(void) { 
    int x = 0;
    change(x); 
    printf("%d", x);
    return 0; 
} 