So I have a while loop like this:
while ( (ret1 == funct1 () ) == 0 && (ret2 == funct2 () ) != 1)
{
// do nothing
}
Will both functions be called at the same time? Like running two threads? Thanks.
So I have a while loop like this:
while ( (ret1 == funct1 () ) == 0 && (ret2 == funct2 () ) != 1)
{
// do nothing
}
Will both functions be called at the same time? Like running two threads? Thanks.