Sorry about my primitive questions but I cannot find a good summary about this basic topic.
So I would like to write my own libraries: mylib.h and mylib.cpp.
I need to include some standard libraries.
But I dont want to overload them, what is the solution?
I have to use #ifdef ?
If yes, than how can I know what string goes after #ifdef for a particular library for example math.h?
I tried __MATH__, __MATH_H__, _H_MATH_ and so on, because i have seen these on the net, but I dont know which is the correct one. I tried to test them but do not work.
My other question is that how can I use my libraries if I want to insert it only in my project directory. I use MinGW g++ under XP.