I normally code my program using turbo c++, and i very well know everything it supports isn't always supported by the UVA compiler.
The functions that are not supported by ANSI standard, are also not supported here.
One such function is sqrtl();
But to my surprise, when i was just fooling around and submitted a program(which i thought would require Big Numbers) using sqrtl(), and I got AC. Eventhough the common function strrev() is not supported.
So i would like to know, what else is supported here.
Very surprising
Moderator: Board moderators
-
- Guru
- Posts: 584
- Joined: Thu Jun 19, 2003 3:48 am
- Location: Sanok, Poland
- Contact:
There are some commonly used language features and library components stated in ANSI/ISO C++ Standard do not work at all or not as expected, since the only fully-compliant implementation at present is Comeau C++ with Dinkum C++ Library, which differs from the old gcc used by the judge.Krzysztof Duleba wrote:You only have a guarantee that ANSI standard functions work fine. As for the others, you never know - you can try, but you can either get AC or RF/CE.
