Ask Question
20 September, 09:48

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

+1
Answers (1)
  1. 20 September, 13:11
    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?
Get 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 there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers