vote up 0 vote down star

There is a piece of code:

int p(char *a, char*b)
{
  while (*a | *b) 
  {
   if (*a ^ *b)
    //...
  }
}

and I don't really know what it's doing.

Edit: I understand what the | and ^ operators do, I just don't know what they'll do with char values.

flag

73% accept rate

8 Answers

vote up 6 vote down check

It treats them as small integers. The | operator then does an OR and the ^ operator does an XOR (exclusive or), on the individual bits making up the integers. Neither operation is particularly useful for most character-based applications, but they can be used (for example) to add a parity bit to a char in comms programming.

link|flag
Fun with ascii : #define TO_UPPER(ch) (ch) & ~0x20 #define TO_LOWER(ch) (ch) | 0x20 – diapir Jun 16 at 9:02
1  
They don't work. TO_LOWER for example turns the NUL character into a space. – Neil Butterworth Jun 16 at 9:32
vote up 8 vote down

While the string a or string b have not run out of characters, check to see if they are different.

int p(char *a, char*b)
{
     // While both string a and string b have characters left
     // note this assumes they are both zero terminated
     // and if not the same length they have trail zeros
     while (*a|*b)  
     {
         // check to see if the character is different
         // this is done via the xor
         if (*a^*b)
              //(...)
         }

         // should increment pointers or will never exit the loop
         // a++;
         // b++;
      }
link|flag
ok but what is the exact result of *a|*b? does just do a bitwise operation on two binary numbers that represent the chars? – agnieszka Jun 15 at 23:31
Hoping, of course, that there are some ++'s missing in the copied code. – Michael Brewer-Davis Jun 15 at 23:32
@angieszka: Yes, indeed. – Mehrdad Afshari Jun 15 at 23:34
@Michael - good point, otherwise it never returns – Simeon Pilgrim Jun 15 at 23:34
@agnieszka *a|*b it just means a != '\0' && b != '\0' – AlbertEin Jun 15 at 23:38
show 2 more comments
vote up 4 vote down

| is the bitwise OR operator. ^ is the bitwise XOR operator:

    10101010      11010101  
  | 01010100    ^ 11111110
  ==========    ==========
    11111110      00101011

While char can be used to represent characters, it's inherently an integer data type. It stores a binary number (just like everything else in a binary digital computer).

link|flag
vote up 2 vote down

In this case, char is just interpreted as a number and | and ^ are the bitwise operators OR and XOR, respectively.

link|flag
vote up 2 vote down

The code just means:

while (*a != '\0' && *b != '\0')
   if (*a != *b)

The developer wanted to be clever using bitwise operators with the chars

link|flag
a and b should be *a and *b, and the if is just *a != *b, not including the nul comparisons. – ysth Jun 15 at 23:48
You're rigth, i was confused, thanks – AlbertEin Jun 15 at 23:58
vote up 0 vote down

That's the XOR operator, which means "exclusive OR". It operates bitwise.

for each bit in your item:

0 ^ 0 = 0
0 ^ 1 = 1
1 ^ 0 = 1
1 ^ 1 = 0

link|flag
vote up 0 vote down

| = Bitwise OR (inclusie OR)

^ = Bitwise XOR (exclusive OR)

link|flag
vote up 0 vote down

They will be treated as the binary representation. This typically means unsigned 1 byte. Not true for all architectures!

(*a|*b) means either *a or *b or both contain anything else than '\0'

(*a^*b) means that the two characters are not identical.

link|flag
(*a|*b) means that BOTH of them don't equal 0, not either or. – kitchen Jun 15 at 23:52
Nope. (*a&*b) means both are nonzero. (*a|*b) means one or both are nonzero. 0|0==0, 0|1==1, 1|1==1 – dwc Jun 24 at 14:39

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.