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

Write a C program to calculate the salary of each employee in your company. You need to input the hours worked and the hourly rate. The company pays 1.5 times the hourly rate for all hours worked in excess of 48 hours. Use the formulas below to calculate the salary: if employee worked less than 48 hours salary = hours * rate; if employee worked more than 48 hours salary = 48.0 * rate + ( hours − 48.0 ) * rate * 1.5; You are required to use a loop to produce the sample output as given below.

1 Answers  


What character terminates all character array strings a) b) . c) END

0 Answers  


What is exception handling? Does c++ support exception handling?

1 Answers  


Are there any special rules about inlining?

1 Answers  


What is the main purpose of overloading operators?

1 Answers  


What c++ is used for?

1 Answers  


How to reduce a final size of executable?

3 Answers  


how can u create a doubly linked list with out using pointers?

2 Answers  


What are member functions used in c++?

1 Answers  


What is a virtual destructor?

2 Answers  


To what does “event-driven” refer?

1 Answers  


Define linked lists with the help of an example.

1 Answers  


Categories