Join The Discussion

Comments ( 2 )

  1. Utkarsh Chauhan
    Utkarsh Chauhan :
    3 years ago

    When a language has the capability to produce new data types, it is said to be extensible.

    Classic basic primitive types may include: Character ( character , char ); Integer (integer , int , short , long , byte ) with a variety of precisions; Floating-point number ( float , double , real , double precision ).

    Whenever a variable is defined in C++, the compiler allocates some memory for that variable based on the data-type with which it is declared. Every data type requires different amount of memory.

  2. Kamalnasir Ahadi
    Kamalnasir Ahadi :
    7 years ago

    sorry give me detail for a language that has the capability to produce new data types

Related Questions on Object Oriented Programming Using C Plus Plus

A default catch block catches

A. all thrown objects

B. no thrown objects

C. any thrown object that has not been caught by an earlier catch block

D. all thrown objects that have been caught by an earlier catch block