Bitwise

 package opertaors;


public class BitwiseIOperators {


public static void main(String[] args) {


int a = 5;

int b = 6;

int c = a & b;

System.out.println(c);

 

}


}

Comments

Popular posts from this blog

Type Casting

Arithmetic

Pattern 1