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 |
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.
What character terminates all character array strings a) b) . c) END
What is exception handling? Does c++ support exception handling?
Are there any special rules about inlining?
What is the main purpose of overloading operators?
What c++ is used for?
How to reduce a final size of executable?
how can u create a doubly linked list with out using pointers?
What are member functions used in c++?
What is a virtual destructor?
To what does “event-driven” refer?
Define linked lists with the help of an example.