answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: Why pointers are called derived data type?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

Why an array is called derived data type?

it contains the similar type of object which derive from the predefined data type like int,float,char e.t.c so it is called derived data type.........................


Why pointer is callded jewel of c language?

a pointer is a derived data type in c. pointers are undoubtedly one of the most distinct and exciting features of c language.it has added power and flexibility to the language. *pointers are more efficient in handling arrays and tables. *pointer can be used to support dynamic memory management. *pointers reduce length and complexity of programs. *increase the execution speed and thus reduce the program execution time. by following character's real power of c lies in proper use of pointers. pointer is called the jewel of c-language.


Two example of derived data types in c plus plus?

The fundamental built in data types in C++ are integral (char, short, int, and long) and floating (float, double, and long double1).The fundamental derived data types in C++ are arrays, functions, pointers, and references.The composed derivative data types in C++ are classes, structures, and unions.----------------------------------------------------------1Microsoft specific ??


Empty data types in C?

Void - is empty data type in C


What type is data?

There Are Two main types of data. Qualitative data are expressed As numbers, obtained by counting or measuring. Another type of data is called an inference.An inference is a logical interpretation based on prior knowledge or experience.

Related questions

Why an array is called derived data type?

it contains the similar type of object which derive from the predefined data type like int,float,char e.t.c so it is called derived data type.........................


What is the difference between fundamental and derived data types?

fundamental data type makes up the derived data type


What are the data type in c language?

Some of them are: 1. char, short, int, long, float, double 2. pointers to these 3. arrays of these 4. arrays of pointers 5. pointers to arrays ...


Why pointer is callded jewel of c language?

a pointer is a derived data type in c. pointers are undoubtedly one of the most distinct and exciting features of c language.it has added power and flexibility to the language. *pointers are more efficient in handling arrays and tables. *pointer can be used to support dynamic memory management. *pointers reduce length and complexity of programs. *increase the execution speed and thus reduce the program execution time. by following character's real power of c lies in proper use of pointers. pointer is called the jewel of c-language.


Two example of derived data types in c plus plus?

The fundamental built in data types in C++ are integral (char, short, int, and long) and floating (float, double, and long double1).The fundamental derived data types in C++ are arrays, functions, pointers, and references.The composed derivative data types in C++ are classes, structures, and unions.----------------------------------------------------------1Microsoft specific ??


What are void pointers?

They are pointers without type


Empty data types in C?

Void - is empty data type in C


What TYPES of return values are allowed?

Apart from basic Data types (int , char , float and double ) you can even return Class Objects.Nearly any type of Data can be returned by a function including pointers to void data type.


What does data mean when you use it in Excel?

Data is any values type in like numbers, dates, text etc. Data does not include formulas. The results of formulas are technically known as information, not data. Information is derived from data, by use of formulas.Data is any values type in like numbers, dates, text etc. Data does not include formulas. The results of formulas are technically known as information, not data. Information is derived from data, by use of formulas.Data is any values type in like numbers, dates, text etc. Data does not include formulas. The results of formulas are technically known as information, not data. Information is derived from data, by use of formulas.Data is any values type in like numbers, dates, text etc. Data does not include formulas. The results of formulas are technically known as information, not data. Information is derived from data, by use of formulas.Data is any values type in like numbers, dates, text etc. Data does not include formulas. The results of formulas are technically known as information, not data. Information is derived from data, by use of formulas.Data is any values type in like numbers, dates, text etc. Data does not include formulas. The results of formulas are technically known as information, not data. Information is derived from data, by use of formulas.Data is any values type in like numbers, dates, text etc. Data does not include formulas. The results of formulas are technically known as information, not data. Information is derived from data, by use of formulas.Data is any values type in like numbers, dates, text etc. Data does not include formulas. The results of formulas are technically known as information, not data. Information is derived from data, by use of formulas.Data is any values type in like numbers, dates, text etc. Data does not include formulas. The results of formulas are technically known as information, not data. Information is derived from data, by use of formulas.Data is any values type in like numbers, dates, text etc. Data does not include formulas. The results of formulas are technically known as information, not data. Information is derived from data, by use of formulas.Data is any values type in like numbers, dates, text etc. Data does not include formulas. The results of formulas are technically known as information, not data. Information is derived from data, by use of formulas.


What are different data type in c language?

there are three data type ic c language. they are, 1.primary data type: a.integer type b.floating point type c.character type d.void type 2.derived data type eg; array, pointer 3.userdefined data type eg; structer and union


What type is data?

There Are Two main types of data. Qualitative data are expressed As numbers, obtained by counting or measuring. Another type of data is called an inference.An inference is a logical interpretation based on prior knowledge or experience.


What is tiny and small memory?

In x86 family of CPUs, there are six memory models. Memory is managed in "chunks" (segment or page) of 64K words. To find a specific location, the CPU needs to know the segment it is in and how far down (the offset) it is from the beginning of the segment. In addition, the x86 CPUs support three types of pointers: * near pointers access data in the specified segment * far pointers can access data within a 1MB address space * huge pointers are a type of far pointer, but with specialized behavior So applications written for the x86 world had to specify a type of memory model which detailed how pointers work. Generally speaking, the rules are: If code is under 64KB... and data is under 64KB... use Tiny or Small model If code is over 64KB... and data is under 64KB... use Medium model If code is under 64KB... and data is over 64KB... use Compact model If code is over 64KB... and data is over 64KB... use Large model