Answer Posted / nimish singh
Yes. The ANSI committee added the bool intrinsic type and its true and false value keywords.
Other apparent new types (string, complex, and so on) are implemented as classes in the Standard C++ Library rather than as intrinsic types.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Reads in the size of a square from the screen; 2. Prints a hollow square of that size out of “-“, “|” and blanks on screen; 3. Prints the same hollow square onto a text file. Your program should work for squares of all side sizes between 1 and 20. --- │ │ │ │ │ │ ---
What is the prototype of printf function?
Write a struct time where integer m, h, s are its members?
What is vector processing?
What is static function? Explain with an example
What do you mean by inheritance in c++? Explain its types.
Can constructor be static in c++?
What are the differences between java and c++?
What is operator overloading in c++ example?
What is the standard template library (stl)?
Is c++ used anymore?
How can you differentiate between inheritance and implementation in c++?
Const char *p , char const *p What is the difference between the above two?
What is enum c++?
How do we balance an AVL Tree in C++?