answersLogoWhite

0

Pointers are called derived data types because they derive their meaning from the type of data they point to, rather than holding a direct value. Specifically, a pointer stores the memory address of another variable, allowing for indirect access to that variable's data. This relationship enables more complex data structures, such as linked lists and trees, to be created and manipulated in programming. Additionally, pointers facilitate dynamic memory allocation, enhancing the flexibility and efficiency of memory management in applications.

User Avatar

AnswerBot

2d ago

What else can I help you with?

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.


What is proven data called?

Proven data is often referred to as "validated data" or "verified data." This type of data has undergone a rigorous process of testing and confirmation to ensure its accuracy and reliability. In research and scientific contexts, it may also be called "empirical data," as it is derived from observation or experimentation.


What are void pointers?

They are pointers without type


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 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 is generic programming in c?

Generic programming in C refers to the practice of writing code that is independent of any specific data type. This is typically achieved using macros and function pointers, enabling the creation of functions and data structures that can operate on various data types without code duplication. The C Standard Library's use of void* pointers is an example, allowing functions to accept pointers to any data type. Although C lacks built-in support for generics like some other languages, these techniques enable a flexible and reusable code base.


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