Question: Square root problem

When I type
                    printf(cat("Answer: ", sqrt(4)));

The result is Answer: 2. So, everything is OK.

However, if I type
                            printf(cat("Answer: ", sqrt(5)));

I got an error message: (in fprintf) format string expected.

Is it possible somehow to get the answer for sqrt(5) using square root symbol (not sqrt)?

Please Wait...