Saved Bookmarks
| 1. |
What is the Array in c programming...?? |
|
Answer» An array is a collection of a fixed number of VALUES of a single TYPE. For example: if you want to STORE 100 integers in sequence, you can CREATE an array for it. int data[100]; The size and type of arrays cannot be changed after its declaration. hope it helps |
|