The basic parts are the the Editor, the compiler and the library of header files and lib files, when you install it. Turbo C Is really quite old, are they still using it? I know that Borland did produce some of the best help files for programmers I have seen, by the way there is the classic story on the dos sound command and the example program
/* Emits a 7-Hz tone for 10 seconds.
True story: 7 Hz is the resonant
frequency of a chicken's skull cavity.
This was determined empirically in
Australia, where a new factory
generating 7-Hz tones was located too
close to a chicken ranch: When the
factory started up, all the chickens
died.
Your PC may not be able to emit a 7-Hz tone. */
#include
int main(void)
{
sound(7);
delay(10000);
nosound();
return 0;
}
I take it they are not fond of chickens