 | | In ANSI C, you will not get a warning from the compiler about this, because, being pre-ANSI C, there are no function prototypes (which serves to prove that function prototypes are a good thing). But, when you try to execute your program, bar will fail in any one of a number of different ways trying to use *d as if it were actually a double. | |
|