ENG  RUSTimus Online Judge
Online Judge
Problems
Authors
Online contests
About Online Judge
Frequently asked questions
Site news
Webboard
Links
Problem set
Submit solution
Judge status
Guide
Register
Update your info
Authors ranklist
Current contest
Scheduled contests
Past contests
Rules
back to board

Discussion of Problem 1226. esreveR redrO

strrev() is restricted???
Posted by #include <everything.h> 27 Jul 2004 07:20
the code:

#include <string.h>
int main(void)
{
    char *s = "abc";
    char *p = strrev(s);
    return 0;
}

gives CE
Re: strrev() is restricted???
Posted by Kopeliovitch Sergey (1) 27 Jul 2004 16:04
I think it means that you should not use this function...
Write it yourself!