MCPcopy Create free account
hub / github.com/apna-college/Alpha / ArraysIntro

Class ArraysIntro

1_Arrays/ArraysIntro.java:3–20  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1package Arrays;
2
3public class ArraysIntro {
4 public static void main(String args[]) {
5 //creating an array
6
7 int marks[] = new int[50];
8
9 int numbers[] = {1, 2, 3};
10
11 int moreNumbers[] = {4, 5, 6};
12
13 String fruits[] = {"apple", "mango", "orange"};
14
15 System.out.println(marks[0]);
16 System.out.println(numbers[0]);
17 System.out.println(moreNumbers[0]);
18 System.out.println(fruits[0]);
19 }
20}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…