Depends on the platform you are using and planning to learn on or will do future development.
On Windows you can use Visual Studio Express C++ which supports standard ANSI C usage. Option two is Cygwin which is a library and tool set that replicates much of what you would use on Linux or other Unix style OS's ( it uses GCC ).
On the Mac you would want XCode which is the standard development tools including C compiler ( based on GCC ).
On many Unix type systems it will be cc or gcc depending on the OS vendor.
If you have the money some of the paid compilers like the Intel one are exceptional but likely won't be much help in learning the programming craft at this point.
gcc -std=c99 -pedantic -Wall -Wextraprovides a reasonable invocation :-) – pmg Nov 9 '10 at 0:31-Walland-Wextrawarn about plenty of things which are purely style opinions of the developers and not incorrect usage of C. Coming up with a sane set of warning flags for gcc is not easy. – R.. Nov 9 '10 at 1:02