[Warning] deprecated conversion from string constant to 'char*'
Well, as declared, a char * monkey represents a non constant string.

const char * monkey = "whatever";

would declare that "whatever" is const, and can't be changed.