Hi all,
why does C language permits an extra comma in initializer list
ex:- int days[] = {
31,28.31,30,31, 30,
31,31,30,31,30, 31,
}
i have heard it is for the purpose of automatic code generation
is there any other purpose than this, if so why ...????
why does C language permits an extra comma in initializer list
ex:- int days[] = {
31,28.31,30,31, 30,
31,31,30,31,30, 31,
}
i have heard it is for the purpose of automatic code generation
is there any other purpose than this, if so why ...????
Comment