1 double pow(double x, double y);
foo(double x)2 void foo( double x ) {
3    int j = (int) ((pow(x, 2)) < 0.0 ? (pow(x, 2))-0.5 : (pow(x, 2))+0.5);
4 }
5