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 the difference between a structure and a union?

Answer Posted / hr@tgksolutions.com

 Structure: All members have their own memory location.
 Union: All members share the same memory location.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

write a program for the normal snake games find in most of the mobiles.

2307


What is define c?

1156


how can f be used for both float and double arguments in printf? Are not they different types?

1128


Explain setjmp()?

1116


What is array within structure?

1174


What will the code below print when it is executed?   int x = 3, y = 4;         if (x = 4)                 y = 5;         else                 y = 2;         printf ("x=%d, y=%d ",x,y);

1946


What are the types of bitwise operator?

1166


What is unsigned int in c?

1056


What is the use of ?

1083


How do I copy files?

1108


Explain how can type-insensitive macros be created?

1044


What is the use of static variable in c?

1142


Can we declare variable anywhere in c?

1034


Why c is called free form language?

1074


main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }

1207