Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.

what is string

0 votes
asked Jul 23, 2019 by anonymous

6 Answers

0 votes
answered Jul 23, 2019 by siege
A group of characters form a string.
+1 vote
answered Jul 23, 2019 by Monkey
String has several meanings :)

But in computer programming it is a term used for a sequence of characters.
0 votes
answered Jul 24, 2019 by ashish tanneeru (180 points)
the sequence of characters form a string
0 votes
answered Jul 25, 2019 by Jay (140 points)
String is special type of array. When an array has a data type of char then it becomes string. String is very popular char array ended by a \n i.e. new line character. You can use #include<string.h> header file to use some predefined functions of string.
0 votes
answered Jul 26, 2019 by anonymous

String is special type of array. When an array has a data type of char then it becomes string. String is very popular char array ended by a \n i.e. new line character. You can use #include<string.h> header file to use some predefined functions of string.

0 votes
answered Jul 27, 2019 by anonymous
string is a group of characters .In c  language string represent in character array
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and and receive answers from other members of the community.
...