Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

byte data type in java example

public class TestingByte {

	public static void main(String[] args) {
		
		byte b = 190; //declare a byte variable and assign the value i.e 10
		System.out.println(b); // print the value of byte variable b

	}

}
Source by abhiandroid.com #
 
PREVIOUS NEXT
Tagged: #byte #data #type #java
ADD COMMENT
Topic
Name
4+3 =