Not sure what 'body' means here. It looks to be related to geometry / volume but I don't understand exactly what you seek.
you can include via the #include statement which are by convention the first thing in the program usually, at the top.
#include<header> //the compiler knows what and where this is, either because you told it in settings or because its part of the language, such as #include<vector>.
#include<"path\filename" //you know where the header is, and explicitly pull it in this way. Eg #include "C:\inc\common\my_stuff.h"
#include "filename" //its in your project path but not the compiler's search paths. eg #include "myclass.h"
heh I would argue that c:/folder/file probably won't work on unix no matter what slash you use. But you are totally correct, it is better (usually you use relative paths not absolute, so the drive convention goes away).