Home
Resume
Blog
Pictures
Notes
Glossary
Notes
C
Functions
int max(int a, int b) { if(a > b) { return a; } else { return b; } }