Hi!
Question's Background:
void dash(int *n, char c) is to draw characters c separated by '+'.
Parameter n is an array of ints, e.g. {1, 3, 2} and '-' for c should give "+-+---+--+", which works fine.
To use dash I do {int f={1, 3, 2}; dash(f, '-');}, which makes the construct copy&pastable.
The question itself:
To avoid copy&pasting I wanted to do #define F(X, Y) {int f=X; dash(f, Y);},
resulting in a nicely usable F({1, 3, 2}, '-').
Unfortunately the compiler complains about F getting 4 (array's length + 1) arguments instead of 2.
So how can you give {1, 3, 2} as parameter to a macro?
|
|
|
||
|
|
Variadic macros are a feature of C99.
|
||||||||
|
|
|
You can pass
Unfortunately, there seems to be no direct way to do literally what you ask, i.e. pass specifically |
||
|
|
|
|
Here is my version:
Result:
|
|||
|
|
|
|
Instead of trying to use a macro to set up and make these calls, I'd probably consider changing the interface to
Using varargs isn't the best thing in the world (they're difficult to use and aren't typesafe), but I think it would be better than the macro concoction you're trying to gen up. Also, remember that even if you stick with your current interface for
|
||
|
|
|
|
Try |
||
|
|

dashdetermines how many elements are in the array. Are there always 3? – Adrian McCarthy Oct 29 at 15:45