fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4.  
  5. int a , b;
  6. printf("Ënter the number");
  7. scanf("%d %d",&a,&b);
  8. printf("Bitwise XOR is %d ",a^b);
  9. return 0;
  10. }
Success #stdin #stdout 0s 5560KB
stdin
7 5
stdout
Ënter the numberBitwise XOR is 2