+ 2
How to use array
Please help me in Hindi
10 Antworten
+ 7
एक array एक ही प्रकार के variable का एक संग्रह है।
जब आपको numbers जैसे variables की सूची संग्रहीत करने की आवश्यकता होती है, तो आप प्रत्येक संख्या के लिए अलग-अलग variables घोषित करने के बजाय, उन्हें एक array में संग्रहीत कर सकते हैं।
Source - sololearn
+ 4
Konse programming language mai bhai?
+ 4
Atul🦚 Lol ... Shubham Mishra I insist you watch a YouTube video on arrays in hindi specifying your programming language .
+ 2
Shubham Mishra Pls Tag your programming language ..
+ 2
Shubham Mishra Read this lesson :
https://www.sololearn.com/learn/Java/2148/?ref=app
+ 2
Sololearn tutorials can help.
+ 2
int [] arr = {1, 2, 3, 4, 5};
System.out.println(arr[0]);
//It will output 1 remember the indexes start from 0
//This will loop thru the array and print all it's elements using an enhanced for loop
forEach(int j: arr) {
System.out.println(j);
}
//The rest you can go to the Java course and learn and if you area visual person you can go to YT
+ 1
Which language?
0
Java
0
Thanku