Static int t[]={0,3,2,5,0,3,5,1,4,6,2,4}; What does this mean???? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
7th Jan 2020, 10:35 PM
Evodius Rutakangwa
Evodius Rutakangwa - avatar
4 Answers
+ 1
Evodius Rutakangwa Wel come.. But pls.. Remove those unrelated code links from question and include relevant tags like static, languge name c, java etc...
9th Jan 2020, 6:59 PM
Jayakrishna 🇮🇳
0
That's an array of integers. Arrays are just a collection of things. Think of it as a shopping list, or in this case it could be a list of movie ratings for your 12 favorite movies.
7th Jan 2020, 11:05 PM
{ Aza }
{ Aza } - avatar
0
Static int means it will retain its values between different function calls. So static variables initialized only ones in a program...
8th Jan 2020, 7:19 AM
Jayakrishna 🇮🇳
0
Thanks
9th Jan 2020, 6:54 PM
Evodius Rutakangwa
Evodius Rutakangwa - avatar