解: #include <stdio.h>
main()
#define f(x) (2*(x) * (x)+6*(x)-6)
{
float f1,x;
x=-1.4;
f1=f(x);
f1=f(f1);
printf(“%fn”,f1);
}

解: #include <stdio.h>
main()
#define f(x) (2*(x) * (x)+6*(x)-6)
{
float f1,x;
x=-1.4;
f1=f(x);
f1=f(f1);
printf(“%fn”,f1);
}