Content deleted Content added
the last example there contains code which is C-only – C++ has no designated initializers. |
|||
Line 18:
int i = 0;
int k[4] = {0, 1};
char tx[3] =
char ty[2] =
struct Point {int x; int y;} p = { .y = 13, .x = 7 };
</source>
|