
SOURCE CODE
class bitnot {
public static void main(String args[]) { // start of main() method.
int a = 0, b = 5, c1, c2; // initializing a & b of type integer.
c1 = ~a; c2 = ~b; // inverting...