in reply to Re: Paid for crap
in thread Paid for crap
doesn't do whatchar* a, b;
does (the first one declares one pointer to char, and one char). (Pause for stares of disbelief from non-C programmers.)char* a; char* b;
This is a shortcoming in C which the supervisor in question is trying to avoid. Explaining the reason in the coding standards document would be a nice idea. Assuming there actually is such a document, that is.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: Paid for crap
by Nkuvu (Priest) on Jan 25, 2007 at 22:32 UTC | |
by j3 (Friar) on Jan 26, 2007 at 04:58 UTC | |
Re^3: Paid for crap
by virtualsue (Vicar) on Jan 26, 2007 at 15:38 UTC |