Hey everyone.
I have a problem with 2 strings i need to compare. My code is the following
if((*(fixedparkpnt)).name == pname)
{
//do stuff
}
I am trying to make a search proceedure based on a name given by the user but the condition is always false. I have tried the function strcmp(); but it compares only the numerical values of the strings so i dismissed it. Any suggestions to make the comparisson work?