can this be done somehow?
if((a || b) == 0) return 1; return 0;
so its like...if a OR b equals zero, then...but it is not working for me.
C++ doesn't support any construct like that. Use if (a == 0 || b == 0).
if (a == 0 || b == 0)