rothmans-avatar

"What does this code do regrading the initialization of an array. int list[] = {5, 6, 3};"

I do not have time to google it. Please provide a real furious solution.
0%

1 reply

over 13 years ago
goofy-6-avatar
"The statement_x000D_ int list[] = {5, 6, 3};_x000D_ declares list to be an array of 3 components and_x000D_ initializes list[0] to 5, list[1] to 6, and list[2] to 3_x000D_ _x000D_ Source: http://in.docsity.com/en-docs/Introduction+to+Computing-Computer+Fundamentals-Lecture+Slides"