how does java knows where it has stored primitive data type

Solutions on MaxInterview for how does java knows where it has stored primitive data type by the best coders in the world

showing results for - "how does java knows where it has stored primitive data type"
Lubin
19 May 2019
1void foo() {
2   int a = 5;
3   system.out.println(a);
4}
5
similar questions