Subj : Re: *.cpp & *.h interaction & structure To : borland.public.cpp.borlandcpp From : Drew MacDonald Date : Tue Jul 13 2004 04:01 pm Try the extern keyword. In file a.h: extern int globalvar; In a.cpp int globalvar In b.cpp #include "a.h" ....(some code).... globalvar = xxx; .