Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
gitlog62066yint increment(int *c)
{
int x=1;
while((*c)&x)
{
*c^=x;
x<<=1;
}
*c^=x;
return *c;
}
increment(&C); -
gitlog62066y@Froot Oh you became reason for a very important discovery
in python, print(0**0) shows 1
should we report or wait for another space mission to be unsuccessful? -
gitlog62066y@cst1992 in that particular comment, meant it mathematically
OFC we all know that it's xor in C C++ python and more
C += 1
random