C Dapatkan nilai benda yang ditunjuk oleh pointer

int* pc, c;
c = 5;
pc = &c;
printf("%d", *pc);   // Output: 5
Friendly Fish