On 2010 Dec 2, at 7:39 PM, Eric Smith wrote:
Brent Hilpert wrote:
Perhaps it is more or less obvious when presented
in stark,
pared-down form like this, but what is wrong with the following C
program, or what problem might be anticipated? (Arguably, it's not
really a C language problem):
main()
{
Read();
}
Read()
{
blah;
blah;
}
Is blah the name of a function? If so, I've definitely encountered
this problem before. GCC will warn about it.
Sorry, my mislead, I guess I should have just put in "..." instead of
"blah"s. See other responses.