Strings And The C-Programming Language

Pub Details

Date

Pages

Strings are a means of storing and manipulating text, such as names and sentences. In C, strings are not a formal data type but an array of type “char”. When you think about a string in C, it is a series of characters, formed into an array. In other programming languages strings are also treated as arrays but it is transparent to the programmer.