In several languages it is possible to initialize a struct , or class, indicating which members want to put some value:
var obj = new Tipo { b = 1, e = "x" };
In C we can initialize the members in order:
Tipo obj = { 0, 1, 2, 'c', "...
asked by
17.01.2017 / 11:34