Strings in C Language Tutorial Notes Study Material with Examples
2018-05-01
Strings in C Language Tutorial Notes Study Material with Examples Strings In C language, strings are stored in an array of character (char) type along with the null terminating character “\O” at the end. char name [ ] = {‘K’, ‘R’ , ’I’, ‘S’, ‘H ‘ , ‘A’, ‘\O’}; ‘\O’=Continue Reading