Saved Bookmarks
| 1. |
Find the output of the snippet:int a[]={1,2,3,4,5,6};for (i=0;i |
|
Answer» ERROR because variable “i” isn’t initialised. INT i =0; After DECLARING ARRAY or before. |
|