I know that many basic operations like addition or division can also be implemented in C using only bitwise operators. How can I do the same with the greater than or equal s
If you only want if (x >= 0) then this is enough
if (x >= 0)
if (~x & INT_MIN)
If you mean "greater than or equal" between 2 numbers in general then it's a lot more difference