Are there any new intrinsic (built-in) data types?



Are there any new intrinsic (built-in) data types?..

Answer / 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

More C++ General Interview Questions

What is a pointer with example?

0 Answers  


what are function pointers?

0 Answers  


What does namespace mean in c++?

0 Answers  


Is map sorted c++?

0 Answers  


What is a loop? What are different types of loops in c++?

0 Answers  






Reverse the Linked List. Input: 1->2->3->4->5->NULL Output: 5->4->3->2->1->NULL

0 Answers  


What is a storage class used in c++?

0 Answers  


Define namespace in c++?

0 Answers  


How do you link a C++ program to C functions?

4 Answers  


How much do c++ programmers make?

0 Answers  


Write a program which is required to process the time of a clock in hours and minutes, entered from the keyboard. With this program, there are two requirements for any data entered by a user: 1. The data must be of the correct type (in this case, two ints). 2. The data must be in the correct range: this means that, for the minutes, negative numbers and any number above 59 must be rejected; for the hours, negative numbers and any number above 23 must be rejected. Output error message for invalid data input. Output the time one and a half hour after the time input. i.e. Hour: 22 Min: 32 One and a half hour after 22:32 is 00:02

0 Answers  


What is one dimensional array in c++?

0 Answers  


Categories