what is difference between array and structure?

Answers were Sorted based on User's Feedback



what is difference between array and structure? ..

Answer / manish

array is a similar type of data but structure are collection of any type of data
array alway start with 0
e.g.a[5]
in this array 6 element
structure has no diffination
it is a collection of n num any data type

Is This Answer Correct ?    6 Yes 2 No

what is difference between array and structure? ..

Answer / abinaya

array:arrray is a collection of similar datatypes stored in
common name.it is a scpe of variable

structure:structure is a dissimilar datatypes stord in
common name.it is a scope of datatype

Is This Answer Correct ?    4 Yes 0 No

what is difference between array and structure? ..

Answer / triveni

ARRAY:- array includes same type of data types.
we dont use any keyword while defining array.
array always passed/called by reference to function.
we cant copy one array to another even though both arrays
ae of same type.
it is fixed in size.

structure:-array includes same or differnt data type
elements .
we use struct keyword while definings structure.
by default structure passed/called by value to function.
we cant copy one structure to another if both are of same
struct type and having different variabe names.
it is not fixed in size.

Is This Answer Correct ?    3 Yes 0 No

what is difference between array and structure? ..

Answer / ajeet

Array is the collection of homogeneous data elements
whereas Structure is the collection of heterogeneous
data types elements.

Is This Answer Correct ?    3 Yes 0 No

what is difference between array and structure? ..

Answer / karam ali

structure is the collection of the different or may be same data type,,,,but the array is the collection of the same data type,

Is This Answer Correct ?    2 Yes 0 No

what is difference between array and structure? ..

Answer / bavithra

Array:Derived datatype
Structure:User defined datatype

Is This Answer Correct ?    2 Yes 0 No

what is difference between array and structure? ..

Answer / priya

Array have same data type and static memory allocation....
Structure have different data type and dynamic memory
allocation

Is This Answer Correct ?    2 Yes 0 No

what is difference between array and structure? ..

Answer / bilal wazir

arrays are the group of related data types but structure are
the different data items

Is This Answer Correct ?    2 Yes 0 No

what is difference between array and structure? ..

Answer / sreejith av

ARRAY:
An array is defined as a group of related data items stored by means of a single variable name.

STRUCTURE:
Structure is defined as a data type to represent several different types of data with a single name.

DIFFERENCE BETWEEN ARRAYS AND STRUCTURES:
1.All data in a array should be of same data type.But in structures data can be of different data types.
2.Individual entries in an array are called elements.But in structure individual entries are called members.

Is This Answer Correct ?    2 Yes 0 No

what is difference between array and structure? ..

Answer / rkv charan

Array:
1.static memory allocation.
2.array size is fixed.
3.array can't have bit fields.

structure:
1.Dynamic memory allocation.
2.structure size is changed dynamically.
3.structure can contain bit fields.

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More C Interview Questions

How can a string be converted to a number?

0 Answers  


‘SAVEPOINT’ and ‘ROLLBACK’ is used in oracle database to secure the data comment. Give suitable examples of each with sql command.

0 Answers  


Calculate the weighted average of a list of n numbers using the formula xavg = f1x1+f2x2+ ….+ fnxn where the f’s are fractional weighting factors, i.e., 0<=fi<1, and f1+f2+….+fn = 1

0 Answers  


Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon

0 Answers   HCL,


What are the different types of constants?

0 Answers  






Explain bitwise shift operators?

0 Answers  


What is the difference between null pointer and void pointer

10 Answers   CTS, Manforce, MAQ Software,


Can a pointer point to null?

0 Answers  


what is the use of macro program

1 Answers   TCS,


what is the difference between c and java?

1 Answers  


Explain null pointer.

0 Answers  


What is sizeof in c?

0 Answers  


Categories