0
What type of programming language does this code belong to.
struct group_info init_groups = { .usage = ATOMIC_INIT(2) };
2 ответов
+ 1
Most likely C (version c90/c99 and above) because of the designated initializer.
0
is it C++ C, or C#
struct group_info init_groups = { .usage = ATOMIC_INIT(2) };