hi, i'm tryin out a client server application where when i compile the prog in gcc it gives a list of errors sayin "undefined reference to.." all external references in that module.... u've suggested one solution before which points out the prob wit using .C(instead of .c)... but in my pogram everything is small letters... so any idea y???
using .C(instead of .c)
This file naming convention tells gcc to compile the code as C++ instead of C. You might well get some different error messages that way.