0
Does array of 100 characters mean we can store 100 characters in it
5 Answers
+ 5
Of course , as much as Java and C++ are concerned....
+ 4
The code will show something like OutOfBoundsException in Java
+ 1
What happens if we give input of more than 100 characters
0
We can store more characters in an array than it's size. In C, if you give an input of more than 100 characters, only the first 100 will be meaningful data. All the other data will be garbage value.
0
Ofcourse