inş demeye calıstıgın budur verim dedim yinede

#include <stdio.h>
#include <stdlib.h>

void degistir(int *i, int *j) {
   int t = *i;
   *i = *j;
   *j = t;
}


int main(){
int x=4,y=12;

degistir(&x,&y);

printf("yeni x %d, yeni y %d",x,y);
system("PAUSE");
return 0;
}