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