0
What is a[100]??? In the 2nd code
5 Respostas
+ 4
You are initializing the variable "a", as a string of characters with a maximum size of 100 characters
+ 1
a[100] Is a character array
Usually used for storing strings
0
Invboy- but when I'm typing a[10], then also it is storing 100 characters, how is that possible??
0
HAPPY...- Are u sure sir that's character types??...I'm so confused
0
a[100] means you are defining an array of type char to continuously store 100(0-99) characters in the memory .