bool func(int x)
{
if (x==2)
return true;
else
return false;
}
------------------------
bool func(int x)
{
if (x==2)
return true;
return false;
}
Loading
bool func(int x)
{
if (x==2)
return true;
else
return false;
}
------------------------
bool func(int x)
{
if (x==2)
return true;
return false;
}
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Sachin SinghPosted Jun 30, 2021, 7:27 AM
SuriPosted Jun 30, 2021, 11:14 AM