Hello,

I am confused as to how a character array gets stored. Eg. char arr = "string", how does it get stored in memory?

Also, what if I intend to perform some arithmetic operations on a particular element from a character array? Eg.where s is a character array, s[i] >= '0'

Will this work? And if yes, why?

Thanks in advance.