If you don't put a license on your code, nobody else can legally use it. Really.
If you write code, you automatically own the copyright on it (unless you explicitly release it into the public domain). That means that nobody else is legally allowed to copy it without your consent. One of the main functions of any license is to give that consent. Sometimes there are conditions on that consent, but every license includes language along the lines of "you're allowed to copy this code and compile it into your applications". Without that, anybody who uses your code is breaking the law.
Many people think that if you post your code online, you probably intended for it to be free to use. But legally, you could choose to prosecute them for using your code, even if you posted it publicly. I know of people who will not use software if it doesn't have a license, simply because they don't need the legal questions hanging over their head.
If you don't want to think too hard about which license to use, just use the MIT license. It basically says "use this however you want".