void resultop(int result, int expValue)
{
string temp;
if(result==2)pa rse error
{
temp="Unknown";
}
else
{
if (result == expValue);
{
temp = "Passed";
}
else --- this is where the parse error is
{
temp = "Fail";
}
}
can someone help me ?
{
string temp;
if(result==2)pa rse error
{
temp="Unknown";
}
else
{
if (result == expValue);
{
temp = "Passed";
}
else --- this is where the parse error is
{
temp = "Fail";
}
}
can someone help me ?
Comment