Can somebody please tell what does this function prototype indicate--
const char* fun( char const *,const char*);
Is it some thing like that the return type would always be constant char ? And what is the difference in the two declarations-- char const* and const char*?
Thanks