#include //The square root function is declared here. #include int main(){ double x = 49; printf("The truncated square root of x is %g.\n", x > 0 ? sqrt(x) : 0); }