We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
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.