void GetNum(int *num) { *num = 100; return ;}int main() {
int x = 4; GetNum(&x); printf("%d", x);
return 0;}
//x=100