Computer Science, asked by TbiaSamishta, 1 year ago

C does not support the string data type however strings are handled as an array of?

Answers

Answered by Secondman
5

C language does not support the string type but it can be used as char type of arrays but in some cases code may not run due to the size of the array and to make it run the full array should be adjusted.

For indicating the termination of string NULL CHARACTER “\0”  is used.But strings can be represented as the array of characters

Similar questions