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
how to explain our contribution in the project?
Does c++ have foreach?
What you know about structures in C++?
Can a new be used in place of old mallocq? If yes, why?
What are the various operations performed on stack?
What is a type library?
What is the latest c++ version?
How can an improvement in the quality of software be done by try/catch/throw?
What is std namespace in c++?
What are the extraction and insertion operators in c++?
What is the use of object in c++?
Can I learn c++ without knowing c?
Which programming language's unsatisfactory performance led to the discovery of c++?
What are the steps in the development cycle?
How many ways can a variable be initialized into in C++?