bar(((void)N_i, 0)...);
The comma operator will discard N_i, yielding just the right-hand operand’s value (0). The cast is to prevent a warning about N_i being discarded.
bar(((void)N_i, 0)...);
The comma operator will discard N_i, yielding just the right-hand operand’s value (0). The cast is to prevent a warning about N_i being discarded.