XOR in C

Here is the example:

#include<stdio.h>
int xor(int a, int b);

int main(void)
{
printf("%d\n",xor(0,0));
printf("%d\n",xor(0,1));
printf("%d\n",xor(1,0));
printf("%d\n",xor(1,1));

    return 0;
}
int xor(int a, int b){
return (a||b)&&!(a&&b);
}

 

It would be a great help, if you support by sharing :)
Author: zakilive

Leave a Reply

Your email address will not be published. Required fields are marked *