What would happen if we did not initialize the scores array in the program on page 116
belongs to book: C++ Primer|Stanley B.Lippman, Josee Lajoie, Barbara E.Moo|5th Edition| Chapter number:3| Question number:3.33
All Answers
total answers (1)
belongs to book: C++ Primer|Stanley B.Lippman, Josee Lajoie, Barbara E.Moo|5th Edition| Chapter number:3| Question number:3.33
total answers (1)
If the `
need an explanation for this answer? contact us directly to get an explanation for this answerscores
` array was defined inside a function, then the value of each element is undefined. If the `scores
` array was defined outside any function, then the value of each element is 0.