I am new to Turbo C can anyone tell me how to create a project of muLtiple .c and .h files in Turbo C, and also how do you combine all the files at once?

Recommended Answers

All 2 Replies

Do yourself a favor. Don't use turbo C. Use Visual C++(express edition is great) or Code::Blocks instead. Code::Blocks is small and free

Many years ago in a galaxy far, far away the Turbo C project was a simple text file with .prj extension, for example:

mymain.c(mydefs.h,herdefs.h)
myfriend.c(herdefs.h)
thelib.lib

In other words, it was a list of source modules (with .h files dependencies), libraries, object modules etc...

Better follow farhan.foxtrot's advice immediatly, right now...

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.