September 1998
Intermediate to advanced
848 pages
20h 13m
English
Although this book has used the ANSI C format for function declarations, C still recognizes the old format. C++, however, only recognizes the new format.
int twilf(q, n) /* old-fashioned C, illegal C++ */
int q; /* declare argument types here */
int n;
{
return (q - n) / (q * n);
}
Read now
Unlock full access