answersLogoWhite

0


Best Answer

Yes, they can be used interchangeably, but they usually mean separate things. A type of data is something like an integer, or string. While a data structure usually refers to a linked list or tree of integers or strings.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Can a data type be called a data structure?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is homogeneous data structure?

collection of dissimilar type of data is called non homogeneous data structure as for example structure .


What is called representation of data structure in memory?

"Abstract Data Type"


What is non homogeneous material?

collection of dissimilar type of data is called non homogeneous data structure as for example structure .


How two present answer sheets?

structure is a type of data structure whose individual elements can differ i type.the elements of structure are called mambers


What are user defined data types?

Actually user defined data type made by user like array,structure,union,pointer. the data type which is define by user or programer according to his need is called user define data type and also called the programer define data type........


Structure data type and elementary data type?

Both of them is very important in programming.


What is difference between pointer and structures?

pointer data type that carry address:of data type that has no name but both of them must have same data type. structures you can make your own data type: struct name put any data type you wants any functions.


What is syntax of structure?

struct tag_name { data type v1; data type v2; __________ __________ __________ }s1;


Data about data is called what in a database?

"Metadata" defines the structure of the data stored.


Which type of data structure is used in ATM to take the printout of last 5 transactions?

stack data structure.


What is data structure why is an array called a data structure which are the other data structures?

A data structure is a collection of more than one elementary item, in some kind of aggregate organization. An array is a type of structure where more than one item of the same type are arranged serially in memory, and accessed using an index. The item can either be an elementary type or it itself can be a structure type. A struct (not to be confused with the use of "structure" in this answer) is a type of structure where more than one item of the same or different types are arranged serially in memory, and accessed using the structure member (.) operator. A union is similar to a struct, except that each member occupies the same address. This means that only one type of data can be stored at any one time in a union. A self-referential structure is a type of structure, usually constructed of simpler structures, linked together with some kind of pointer scheme. Examples of this are the linked list and tree.


Is struct is user defined data type?

yes, a structure is a user-made data type so that user can manipulate multiple data types simultaneously. a structure covers up sum limitation of arrays as in it provides heterogenous data type.