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 OR is %d ",a|b);
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 5580KB
stdin
7 5 
stdout
Ënter the numberBitwise OR is 7