Hi Koyel, You are compiling and linking source.cpp. You need to compile and link all your source code. e.g. g++ source.cpp uno.cpp dos.cpp tres.cpp -o myapp If you do your compiling separate from your linking: g++ source.o uno.o dos.o tres.o -o myapp HTH, --Eljay