# pointer練習2 https://neoj.sprout.tw/problem/168/ int* min(int* a,int* b); 只需要把最小值(a和b)的位址傳回去即可。 # Code ```cpp int* min(int* a, int* b) { if (*a < *b) { return a; } else { return b; } } ```
×
Sign in
Email
Password
Forgot password
or
By clicking below, you agree to our
terms of service
.
Sign in via Facebook
Sign in via Twitter
Sign in via GitHub
Sign in via Dropbox
Sign in with Wallet
Wallet (
)
Connect another wallet
New to HackMD?
Sign up