blob: 9c2f212384af2c61a3c942ec39ee21cffed8aae3 [file] [log] [blame]
double test1 (double a, double b, double c)
{
return a + b * c;
}
double test2 (double a, double b, double c)
{
return - a + b * c;
}
double a, b, c;
int main()
{
test1(a, b, c);
test2(a, b, c);
}