N
noname_is_me
Sorry for this simple question.
int main(void)
{
unsigned int a[4]={3,5,7},b;
b = 2 / a[2];
printf("%d %d\n",sizeof a,b);
return 0;
}
Is this a UB. I searched through the std and could not able to find out.
int main(void)
{
unsigned int a[4]={3,5,7},b;
b = 2 / a[2];
printf("%d %d\n",sizeof a,b);
return 0;
}
Is this a UB. I searched through the std and could not able to find out.