нашел на либру Страустрапа и компилю следующие проги: // header.h extern char * prog_name; extern void f (); Файл main.c является основной программой: // main.c #include "header.h" char * prog_name = "примитивный, но законченный пример"; int main () { f (); } а строка печатается функцией из файла f.c: // f.c #include <stream.h> #include "header.h" void f () { cout << prog_name << '\n'; } Все работает, но при этом оно пишет про несоответствие стандартам, че ей надо? [root@mobile100 cex]# c++ main.c f.c -o silly In file included from /usr/include/c++/3.2.2/backward/iostream.h:31, from f.c:2: /usr/include/c++/3.2.2/backward/backward_warning.h:32:2: warning: #warning This file includes at least one deprecated or antiquated header. Please consider using one of the 32 headers found in section 17.4.1.2 of the C++ standard. Examples include substituting the <X> header for the <X.h> header for C++ includes, or <sstream> instead of the deprecated header <strstream.h>. To disable this warning use -Wno-deprecated. [root@mobile100 cex]# ls f.c f.c~ header.h header.h~ main.c main.c~ silly [root@mobile100 cex]#