size_t is not built into C++. And it is not defined by default. This one doesn't compile with GCC:
int main(int argc, char** argv) {
size_t size;
return 0;
}
That said, size_t is part of POSIX and if you use only basic things like <cstdlib>, you will likely end up having it defined.
You could argue that std::size_t is the C++ equivalent of size_t. As Brian pointed out, std:: is used as namespace to avoid setting global variables which don't fit everybody. It's just like std::string, which could also have been defined in the root namespace.
