what is difference between array and structure?

Answers were Sorted based on User's Feedback



what is difference between array and structure? ..

Answer / guest

array is a collection of similar data types.a structure is
a collection of different data types

Is This Answer Correct ?    27 Yes 1 No

what is difference between array and structure? ..

Answer / aaa

structure uses keyword struct while declaring,
whereas array doest use any keyword for declaration.

Is This Answer Correct ?    25 Yes 5 No

what is difference between array and structure? ..

Answer / chinmayee

array is a homogenous data types.
structure is a user defined data types...

Is This Answer Correct ?    26 Yes 9 No

what is difference between array and structure? ..

Answer / sruthi

structure is user defined!


c program for printing employee details using union ??

Is This Answer Correct ?    48 Yes 34 No

what is difference between array and structure? ..

Answer / priya

Array is used to store large set of data with same data
type.But structure allows you to wrap one or more variables
with different data type.

Is This Answer Correct ?    11 Yes 1 No

what is difference between array and structure? ..

Answer / preet batth

array
1.there is no keyword
2.it has decleration only
structure
1.the keywod struct is used
2.it as decelration and definition

Is This Answer Correct ?    12 Yes 2 No

what is difference between array and structure? ..

Answer / uttam kumar das

array= array is collection of similar data items
structure= structure is a collection of dissimilar data
items

Is This Answer Correct ?    18 Yes 9 No

what is difference between array and structure? ..

Answer / sajid ali khan

ARRAYS: -
An array may contain a number of items all of the SAME TYPE,
including user-defined types such as structures (see above).
Structure: -
In the C programming language, a structure may contain
MULTIPLE DATA TYPES, also including arrays of those types,
and the structure becomes a USER-DEFINED type.

Is This Answer Correct ?    14 Yes 7 No

what is difference between array and structure? ..

Answer / kunal

array is scope of variable
structure is a scope of data type

Is This Answer Correct ?    12 Yes 6 No

what is difference between array and structure? ..

Answer / srinidhi

array means homogenious it can hold only its or char ,float
stucture means heterogenious it can contain 1 int,i floatso
it is contains mixed data

Is This Answer Correct ?    6 Yes 0 No

Post New Answer

More C Interview Questions

how to write a prog in c to convert decimal number into binary by using recursen function,

1 Answers  


What is a memory leak? How to avoid it?

1 Answers  


What is a method in c?

0 Answers  


How are 16- and 32-bit numbers stored?

0 Answers  


simple program of graphics and thier outpu display with a want what is out put of graohics in c language

1 Answers   CSC, HCL,


Why c is called top down?

0 Answers  


What is 2 d array in c?

0 Answers  


1 1 12 21 123 321 12344231 how i creat it with for loop??

1 Answers  


Explain what math functions are available for integers? For floating point?

0 Answers  


write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays

0 Answers   IBM,


write a program to find the largest and second largest integer from an array

2 Answers   Value Labs,


An array name contains base address of the array. Can we change the base address of the array?

4 Answers   NMIMS, Wipro,


Categories