Computer Science, asked by Amandeeptiwari, 1 year ago

what is strings in c language how to easy way defined

Answers

Answered by devajitbora15
1

A string in C is merely an array of characters. The length of a string is determined by a terminating null character: '\0' . So, a string with the contents, say, "abc" has four characters: 'a' , 'b' , 'c' , and the terminating null ( '\0' ) character.


Amandeeptiwari: thank bro
Answered by panno007
1
A string in C is merely an array of characters. The length of a string is determined by a terminating null character: '\0' . So, a string with the contents, say, "abc" has four characters: 'a' , 'b' , 'c' , and the terminating null ( '\0' ) character.

Amandeeptiwari: thanks bro
Similar questions