Is there a datatype string in c++?How is the memory allocation?
Answer Posted / nithin devang
There is no DataType called String in C++.
String can be created using character array and delimited by
null character i.e. '/0'.
like char name[]={'n','i','t','h','i','n','
','d','e','v','a','n','g','0'}
or
char name={"nithin devang"}//it will automaticall append
null char.
Null character is having value (ASCII) Zero. (0 character
dont have ascii value 0)
--
If you still wish to use the keyword string you may declare
a macro
#define String char[];
my answer surety %=98%
-------------------
Read Expert C programming, The deep C secrets by Peter Van
Der Linden
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is the use of cmath in c++?
What is #include cmath?
Explain linear search.
What is the full form of c++?
Why should you learn c++?
What is the insertion operator and what does it do?
Is c++ proprietary?
What kind of jobs can I get with c++?
What is function overriding in c++?
What is the advantage of an external iterator.
What return value must conversion operators have in their declaration?
What is a memory leak c++?
What is the meaning of c++?
What are virtual functions in c++?
Write a code/algo to find the frequency of each element in an array?