#include<stdio.h>
int main()
{
int const SIZE=5;
int expr;
double value[SIZE]={2.0,4.0,6.0,8.0,10.0};
expr=1|2|3|4;
printf("%f",value[expr]);
return 0;
}
How is the above code evaluated? Especially the statement:
expr=1|2|3|4;
In C (and many other programming languages), | is a bitwise operator OR.
Convert decimal to binary 1 = 0001 2 = 0010 3 = 0011 4 = 0100
Hence, 1|2|3|4 equivalents to 0001 OR 0010 OR 0011 OR 0100 = 0111 ( = 7 in decimal)
So expr = 7. In this case, accessing value[expr] turns out unexpected result.