how can i declare an unsign long integer in java
how can i declare an unsign long integer in javain c we useunsigned long asd=0;what is the notation in java for that statement
Basically you can't. But it rarely matters. Primitives in Java are all signed, except char (and, of course, boolean).