When you see a line like:
#define IX(i,j) ((i)+(N+2)*(j))
is that equivalent to:
int IX(int i, int j) { return ((i)+(N+2)*(j));}
How do you know the return type etc?
No comments:
Post a Comment