Stack Exchange network consists of 183 Q&A communities including Stack Overflow, the largest, most trusted online community for developers to learn, share their knowledge, and build their careers.
Stack Overflow for Teams is now called Stack Internal. Bring the best of human thought and AI automation together at your work.
Bring the best of human thought and AI automation together at your work. Learn more
Stack Internal
Knowledge at work
Bring the best of human thought and AI automation together at your work.
#PHP, 9 bytes, MAX INT (9223372036854775807)
echo ~0^1<<63;
or
echo -1^1<<63;
Set an int of all bits on (-1) then XOR it with an int of only the first bit on to flip the sign bit.