My function header is
int display_caption( char* caption );
if( display_caption( "hybrid thresholded Image" ) != 0 )
{
return 0;
}
It returns an error
Argument of type 'const char*' is incompatible with parameter of type 'char*'
Can someone help me with this ?