7 lines
71 B
C
7 lines
71 B
C
#include "func.h"
|
|
|
|
int max(int a, int b)
|
|
{
|
|
return a > b ? a : b;
|
|
}
|