Top C Programming Resources for Practice and Development

AI Thread Summary
Several users recommend various resources for practicing C programming, emphasizing the need for accessible tools to create, compile, and run C programs. Pacific C is mentioned as a free download option, along with suggestions to use Cygwin for Windows users, which includes gcc and mingw. For those seeking an integrated development environment, DevC++ is highlighted as a suitable choice. Additionally, users suggest exploring Linux distributions, such as Knoppix, which come pre-equipped with programming tools. Microsoft Visual Studio is also recommended for its comprehensive features that support both C and C++ programming.
Benny
Messages
577
Reaction score
0
Hi, does anyone know of any websites which I can access to obtain the necessary files for me to able to create, compile and run C programs? I really need some programming practice and reading my textbook won't be enough. So any help would be much appreciated.
 
Last edited:
Physics news on Phys.org
I've used Pacific C in the past for simple stuff, and it's available as a free download:

http://www.htsoft.com/products/PACIFICc.php

BTW, to find that previous pointer, I googled pacific c free download, and got lots of related hits for other compilers. Maybe try that google to see if any of the others interest you.
 
Last edited by a moderator:
If you're running Windows, my advice is to download Cygwin. The default install includes both gcc and mingw.

If you're interested in an integrated development environment, I suggest DevC++.

- Warren
 
Thanks for the suggestions guys.
 
Get a linux distribution! Full of programming stuff like that. You don't even really have to re-install your system if you want -- you could get a Linux distribution that boots off a cd (google for Knoppix)! Compiling and running C code is part of the OS!

---------------------------------------------------------------------
"If I have seen further than others, it is by standing on the shoulders of giants."

http://www.surgecurrent.com
 
Not sure if you are still looking, but I encountered the exact same issue not long ago. I did my research and ended up going with Microsoft Visual Studios (or Visual C++) it includes everything you need, the IDE and compilers and everything. I know the name says Visual C++ but it is not limited to C++ programming, it works great for C as well (which is what I'm programming in).
 

Similar threads

Back
Top