UNIXworkcode

1 #include <string.h> 2 3 int main() { 4 const char *r = memrchr("tester", 'e', 6); 5 return !(r != NULL); 6 } 7