Berikut adalah algoritma fungsi penukaran isi variabel dengan pointer dalam bahasa C #include <conio.h> #include <stdio.h> void ganti(int *x,int *y){ int temp; temp=*x; *x=*y; *y=temp; } void main(){ int a=50; int b=100; printf("sebelum ditukar a=%d b=%d\n",a,b); ganti(&a,&b); printf("sesudah ditukar a=%d b=%d",a,b); getch(); }
Change the world by your own Code