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 the Difference between "C structure" and "C++ structure"?

12 Answers  


Where are setjmp and longjmp used in c++?

0 Answers  


What is a buffer c++?

0 Answers  


an operation between an integer and real always yeilds a) integer result b) real result c) float result

0 Answers  


How did c++ start?

0 Answers  






What is the rule of three?

0 Answers  


Can c++ be faster than c?

0 Answers  


Describe the advantages of operator overloading?

0 Answers  


How do you declare a set in c++?

0 Answers  


How can an improvement in the quality of software be done by try/catch/throw?

0 Answers  


There are 100 students in a class. The management keep information in two tables. Those two tables are given like Roll no Name Age 001 ABC 15 002 XYZ 14 and Roll No Subject Marks 001 Math 75 001 Physics 55 002 Math 68 001 Hindi 69 They want the information like this Roll No Name Hindi Physics Math Total 001 ABC 69 55 75 199 002 XYZ 68 74 84 226 And Roll No Suject Highest 001 Math 98 007 Physics 84 021 Hindi 74 All 275 All information is kept in structure in main memory. You have to find last two tables.

0 Answers  


What is setbase c++?

0 Answers  


Categories