> Personally I prefer
>
> int* ip;
>
That would turn me into a gibbering idiot. :)

> Kernighan and Richie specifically say in The C Programming Language though
> that they like to write
>
> int *ip;
>
> since it reinforces the point that dereferencing ip (*ip) gives an int.
>

Now THAT makes sense.  You have to understand though, the last time I
wrote anything serious in C, the only way to define functions was this:

main(argc, argv)
int *argc;
char **argv;
{
}


...note that it's been *years* since I had more than a passing
accquaintance(sp) with main() so I probably got the parameters
backwards...

g.




_______________________________________________
Flightgear-devel mailing list
[EMAIL PROTECTED]
http://mail.flightgear.org/mailman/listinfo/flightgear-devel

Reply via email to