MIPI_BaseC_WebinarFRTK/11_Lecture11/Module03_p11/func.c

12 lines
147 B
C
Raw Normal View History

2024-11-13 09:22:28 +03:00
#include "mylibrary.h"
int max_3(int a, int b, int c)
{
return max(max(a,b),c);
}
static int max(int a, int b)
{
return a > b ? a : b;
}