In the C language, what does "return ~0" mean?

Viewed 12832

I'm dealing with some C code that includes

return ~0;

What does that mean? It's pretty much impossible to google for...

7 Answers
Related