"add" <addsub@xxxxxxxx> writes: > ----- begin > void main() > { > float i=1.0; > foo(i); > } > void foo( float i ) > { > return i; > } > ----- end This code is invalid, since foo has no prototype and doesn't match the implicit declaration. -- Falk
"add" <addsub@xxxxxxxx> writes: > ----- begin > void main() > { > float i=1.0; > foo(i); > } > void foo( float i ) > { > return i; > } > ----- end This code is invalid, since foo has no prototype and doesn't match the implicit declaration. -- Falk