If I've got the C String:

char c_string[15];

Can I refer to it later as:

c_string

or does it need to be c_string[]

or c_string[15]



Thanks!!