Knowledge Walls
Venkatesan
Hyderabad, Andhra Pradesh, India
Passcode:
Introduction [cont'd]
Input Output Functions [cont'd]
Structures and Unions [cont'd]
# Preprocessor [cont'd]
What is String? in Strings of Programming in C
2172 Views
What is String? 
Sequence of characters which is ended with \0 (null) character, it is called as string. \0 ensures the string is reached end internally.
Program
#include
void main(){
    //character array initialize in two ways
    char name[] = "knowledge walls";
    char type[] = {'w','e','b','\0'};
    //Displaying character array using %s mode
    printf("%s\n",name);
    printf("%s\n",type);
}
Output 
knowledge walls
web
Next Topics
Next lessons of current book.
Previous Topics
Previous lessons of current book.
Looping Statements of Programming in C
Best Lessons of "Programming in C"
Top lessons which are viewed more times.
Structures and Unions of Programming in C
Input Output Functions of Programming in C
Structures and Unions of Programming in C
  Copyright © 2014 Knowledge walls, All rights reserved
KnowledgeWalls
keep your tutorials and learnings with KnowledgeWalls. Don't lose your learnings hereafter. Save and revise it whenever required.
Click here for more details