InterviewSolution
Saved Bookmarks
| 1. |
write a small program in C++ that declares a two dimentional array and populates the same using the numbers of 10×10 multiplication table |
|
Answer» Explanation:1x4=4 2x4=8 3x4=12 4x4=16 5x4=20 6x4=24 7x4=28 8x4=32 9x4=36 10x4=40 |
|