الرجوع
تسجيل الدخول
public class Main {
    public static void main(String[] args) {
        int number = 5;
        changeValue(number);
        System.out.println(number);
    }

    public static void changeValue(int num) {
        num = 10;
    }
}

What will be the output of the above code?