Ask Question
8 September, 19:53

Dеclarе a two-dimеnsional array of doublеs (on thе stack) namеd tickеrValuеs with 12 rows and 31 columns

+4
Answers (1)
  1. 8 September, 20:02
    0
    double tickerValues[12][31];

    Explanation:

    The above written statement declares an array of double with 12 rows and 31 columns on the stack memory. The declaration is in C+ + language.

    I have not initialized the array as it is just the declaration to initialize it we have use loops or specify every element by yourself.

    To declare it on the heap memory you have to use new keyword.
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “Dеclarе a two-dimеnsional array of doublеs (on thе stack) namеd tickеrValuеs with 12 rows and 31 columns ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers