C_CPP/01_ENV/Testat/func1.c

6 lines
79 B
C
Raw Normal View History

2018-03-20 13:12:11 +01:00
#include <stdio.h>
int func1(int x) {
return (x-2)*(x-6)*(x-10)*(x-15);
}