I'm to this whole modularity thing. We were asked to do our own libraries .h and .c files and to call them in main. The main objective of the program is to compare bubble and select sort. So far, I have all the libraries along with their respective .c files. However, I am having problems linking them. I have already placed it into a project file (I'm using Dev-C++) but it wont accept them. Am I doing something wrong??

Any suggestions??

Recommended Answers

All 3 Replies

You need to give us more information. Can you post the link errors that you get ?

Make sure that you have the correct prototypes in the .h files and that you are including the correct .h files in main and your .c files.

Please list down the errors you got so that we can help to analyze which parts go wrong.

I can't tell you much without any more info.

But just like this:
1. Your .h and .c file need to have the same name
2. In your main function you only include .h file
3. And you have to write:

#include "yourname.h"
//and NOT:
// #include <yourname.h>
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.