Hi all, I'm stuck with this program and cannot figure out why it's not compiling on me. It keeps giving me an 'undefined reference to bar' error message and fails to compile. Any ideas/suggestions please? Thanks
Code:#include <stdio.h> extern void bar(int *); void progy () { int *val; bar(val); ..... ..... } main() { progy(); .... .... }



LinkBack URL
About LinkBacks



I used to be an adventurer like you... then I took an arrow to the knee.