There are not many differences between each standard, so don't worry that much about this problem.
Learn C90 (ISO), which is the base for gcc's default (gcc's default is actually gnu90, it is C90 + extensions) and you'll be fine. To learn C99 or C11 you won't need to spend too much time (Wikipedia might be a good starting point). Some (most?) compilers don't even fully support C99 and/or C11.
Different compilers also have some non-standard extensions. As you start reading more code you'll find some of these, and eventually learn too.
If you use it, gcc has some nice options to control the standards you're using and warnings given (-std=something -pedantic, see the man page). Use them. I'm not sure about other compilers, but they may also have options to disable non-standard extensions. These compiler options can teach you some things about the differences between the standards.
If you're writing for different compilers/systems, you'll probably worry more about which functions are part of the C standard and which functions are part of other standards (like Posix). Once again, Unix man pages are useful in telling you this.