mirror of
https://github.com/renbaoshuo/202401-programming-assignments.git
synced 2024-12-16 15:44:39 +00:00
8 lines
128 B
C
8 lines
128 B
C
void findmax(int *px, int *py, int *pmax) {
|
|
if (*px > *py) {
|
|
*pmax = *px;
|
|
} else {
|
|
*pmax = *py;
|
|
}
|
|
}
|