1 2 3 4 5 6 7 8 9 10
int main() { int x = 10; int *p = &x; *p = 20; if (*p == 20) { return 1; } else { return 0; } }