MIPI_BaseC_WebinarFRTK/06_Lecture06/06_function_2_p19.c
2024-11-13 09:22:28 +03:00

19 lines
529 B
C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#include <stdio.h>
int max (int a, int b)
{
if (a>b)
return a;
return b;
}
int main ()
{
int a,b;
scanf ("%d%d", &a,&b);
// Чтобы объявлять переменные не в начале нужен С99
int result = max (a,b); //Результат функции присваем maximum, имя функции не должно совпадать с именем переменной, int max = max (a,b); https : //www.onlinegbd.com
printf ("max = %d\n", result);
return 0;
}