A
anson
#include <stdio.h>
int
main(void)
{
int s[3] = { 1, (3,2), (6, 5, 4)};
printf ("%d %d %d", s[0], s[1], s[2]);
}
~
~
this means the last one within the parenthesis mark will works ,
what about others ?
what happened and why .
I want to know ...
it's a part of language or depend on implement ?
int
main(void)
{
int s[3] = { 1, (3,2), (6, 5, 4)};
printf ("%d %d %d", s[0], s[1], s[2]);
}
~
~
1 2 4a.out
this means the last one within the parenthesis mark will works ,
what about others ?
what happened and why .
I want to know ...
it's a part of language or depend on implement ?