0
Why we don't use & for string in c programming?
We use & in c programming for describing the address of the variables. But why don't we use it for string?
1 ответ
0
Because a string is already a pointer on the first char of the string.
We use & in c programming for describing the address of the variables. But why don't we use it for string?