D
dndfan
Hello,
In the short time I have spent reading this newsgroup, I have seen this
sort of declaration a few times:
Now, I am vaguely familiar with it; I did not read up on it because I
have read in an apparently misinformed book that such declarations were
very old and that no one used them any more. Can someone please explain
why they are still using this style and why the book said it was
obsolete? Is what I have written any different than:
Sorry if I'm being too basic about this, but it's just something that
will probably never get mentioned in regular C courses.
Thanks in advance.
In the short time I have spent reading this newsgroup, I have seen this
sort of declaration a few times:
int
func (string, number, structure)
char* string
int number
struct some_struct structure
Now, I am vaguely familiar with it; I did not read up on it because I
have read in an apparently misinformed book that such declarations were
very old and that no one used them any more. Can someone please explain
why they are still using this style and why the book said it was
obsolete? Is what I have written any different than:
int
func (char* string, int number, struct some_struct structure) ?
Sorry if I'm being too basic about this, but it's just something that
will probably never get mentioned in regular C courses.
Thanks in advance.