Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


what is difference between array and structure?

Answers were Sorted based on User's Feedback



what is difference between array and structure? ..

Answer / kirankumar

Array takes data types of same kind where as structure takes
any kind.
Ex:int n[5];/* one d array
int n[10][10];/* two d array
int n[10][10][10];/* multi d array or jagged array
Structure takes following form:
struct class
{
cahr name;
int marks;
float sbuject[3];
}stuent[100];

Is This Answer Correct ?    1 Yes 1 No

what is difference between array and structure? ..

Answer / tsering dolma

array is collection of same data.
structure is collection of hetogenous data

Is This Answer Correct ?    0 Yes 0 No

what is difference between array and structure? ..

Answer / tsering dolma

1. Array is collection of homogenous data and
structure is collection of hetogenous data

Is This Answer Correct ?    0 Yes 0 No

what is difference between array and structure? ..

Answer / shiva

arry is derived data type,
structure is user defined data type

Is This Answer Correct ?    0 Yes 0 No

what is difference between array and structure? ..

Answer / adilakshmi

Array elements are homogeneous type.
Structure elements are different data type.
Array is the pointer to the first element.
Structure is not a pointer.

Is This Answer Correct ?    0 Yes 0 No

what is difference between array and structure? ..

Answer / chaudhary paresh

- Array elements are homogeneous. Structure elements are of
different data type.
- Array allocates static memory and uses index / subscript
for accessing elements of the array. Structures allocate
dynamic memory and uses (.) operator for accessing the
member of a structure.
- Array is a pointer to the first element of it. Structure
is not a pointer
- Array element access takes less time in comparison with
structures.

Is This Answer Correct ?    0 Yes 0 No

what is difference between array and structure? ..

Answer / viji

array is the collection of same data items are declare under
common name

structure is the collection of different data items are
declare under different name which are accessed under common
name.

Is This Answer Correct ?    0 Yes 0 No

what is difference between array and structure? ..

Answer / monishasyed

Array is same data type
it can not bit field
it has the base pointer
structure is the different data type
it can bit field
it has the poiter

Is This Answer Correct ?    0 Yes 0 No

what is difference between array and structure? ..

Answer / dhivya

when we are declaring an array a variable is enough with
the size.
when we are declaring structure it contain different data
types.

Is This Answer Correct ?    16 Yes 18 No

what is difference between array and structure? ..

Answer / kirankumar

Array is used to represent a group of data items that
belongs to the same type or kind.
int a[5];
i.e a[0],a[1],a[2],a[3],a[4].
all a values are integer types.


If we want to represent data items of different types using
a single name is called strucute.
Ex:struct book
{
char title[20];
int pages;
float price;
};

Is This Answer Correct ?    0 Yes 3 No

Post New Answer

More C Interview Questions

Can u return two values using return keyword? If yes, how? If no, why?

7 Answers  


Write a program to give following output..... ********* **** **** *** *** ** ** * * ** ** *** *** **** **** *********

4 Answers  


program to find which character is occured more times in a string and how many times it has occured? for example in the sentence "i love india" the output should be i & 3.

3 Answers  


What are c preprocessors?

0 Answers  


What is meant by operator precedence?

0 Answers  


What are valid operations on pointers?

0 Answers  


int a=2,b=3,c=4; printf("a=%d,b=%d\n",a,b,c); what is the o/p?

6 Answers   Verifone,


Find if a number is power of two or not?

1 Answers  


What is output of the following program ? main() { i = 1; printf("%d %d %d\n",i,i++,i++); }

9 Answers   CTS, Wipro,


Explain the difference between strcpy() and memcpy() function?

0 Answers  


Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.

0 Answers  


What is linear search?

0 Answers  


Categories