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 ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the use of data hiding?
an integer constant must have atleast one a) character b) digit c) decimal point
why is iostream::eof inside a loop condition considered wrong?
Explain abstraction.
What is runtime errors c++?
Can manipulators fall in love?
Explain pass by value and pass by reference.
What is the use of endl?
What is singleton class in c++?
Can create new c++ operators?
What are move semantics?
What is time h in c++?
What is the hardest coding language to learn?
Which function should be used to free the memory allocated by calloc()?
What are the advantages of using friend classes?