MIPI_BaseC_WebinarFRTK/11_Lecture11/Module01_p7/func.c

10 lines
206 B
C
Raw Normal View History

2024-11-13 09:22:28 +03:00
#include <stdio.h>
extern int m; // Глобальная переменная. Видна из обоих файлов
int max(int a, int b)
{
m=5;
printf("m=%d\n",m);
return a>b? a : b;
}