Example:
#include
void main()
{
int a=5,b=2;
printf("%d %d\n",b=a+1,a=a+1);
}
output =>> 7 6
NOT 6 6
b=a+1// 7
then printf
#include
void main()
{
int a=5,b=2;
printf("%d %d\n",b=a+1,a=a+1);
}
output =>> 7 6
NOT 6 6
^
" (caret).A bitwise exclusive or takes two bit patterns of equal length and performs the logical XOR operation on each pair of corresponding bits. The result in each position is 1 if the two bits are different, and 0 if they are the same. For example:
0101
XOR 0011
= 0110