- 1
Static int t[]={0,3,2,5,0,3,5,1,4,6,2,4}; What does this mean????
https://code.sololearn.com/c66aAyJ3zVxh/?ref=app https://code.sololearn.com/WDnt8QE00xW5/?ref=app
4 Respostas
+ 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...
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.
0
Static int means it will retain its values between different function calls.
So static variables initialized only ones in a program...
0
Thanks