wanted c compiler

Thread Starter

srinath.msd

Joined Sep 19, 2011
5
hey guys i'm in urgent need of a C COMPILER for windows XP 32 BIT... plus the program for implementation of a SINGLY LINKED LIST. any help would be appreciated :) :)
 

someonesdad

Joined Jul 7, 2009
1,583
I use MinGW on Windows when I need a C/C++ compiler. If you just need a linked list, there are a gazillion libraries around the web. If you need to write one as a class assignment, consult any beginning algorithms/data structures text and you'll learn all you need to know. The rest just requires a bit of thinking and is somewhat of a rite of passage for all beginning programmers. A good exercise is to write a doubly-linked list library tool for yourself, as you can use it to implement other data structures.
 
Top