I have a c++ while loop I'm looking at:
while ((stuff) ? false : (otherstuff))
{
commands;
}
And I don't really understand what it's trying to do with the "? false :" part? Can any one explain what this means please? I already tried looking it up but I'm not really getting anything helpful.