Why does the following program works, and what is ^+ operator ?
int main()
{
int a = 10;
int b = 20;
int c;
c = a ^+ b;
printf("Value ===%d", c);
return 0;
}
int main()
{
int a = 10;
int b = 20;
int c;
c = a ^+ b;
printf("Value ===%d", c);
return 0;
}
Comment