From 9c440d282aea57d18b7e09674e6876322c6528e1 Mon Sep 17 00:00:00 2001 From: AkshayRJ28 <118600264+AkshayRJ28@users.noreply.github.com> Date: Sat, 10 Dec 2022 23:14:39 +0530 Subject: [PATCH] Update cwh_26_Array.java while printing add the information related that particular answer , it gives Proper information of your code after execution --- cwh_26_Array.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cwh_26_Array.java b/cwh_26_Array.java index 19b1c93..4a96a27 100644 --- a/cwh_26_Array.java +++ b/cwh_26_Array.java @@ -16,7 +16,7 @@ public static void main(String[] args) { marks[2] = 56; marks[3] = 20; marks[4] = 19; - System.out.println(marks[3]); + System.out.println("Marks at the location of address of Array 3 is : "+marks[3]); // 2. Declaration and then Memory Allocation: int[] marks1;