Structures And Unions
Thread Tags
Adobe Illustrator Adobe InDesign Adobe Photoshop Android Development Android Programming Android Studio Automation Testing bitmap file Brochure design C / C++ Programming Career Option Career Options College Lounge css CSS/HTML sandbox digital marketing Digital Marketing / SEO Fireworks Graphic Design Graphic designing Graphics Design Graphics Designing HTML? Illustrator Internship Training Liquify Tools logo Design logo designing Mobile UI Development Photoshop QA react-native Responsive Design SEO Testing Typography UI UI/UX Development UI Design UI Designing UI development User Interface UX Design Web Designing Website Design-
Register for free!
Registration at Smart Mentors is completely free and takes only a few seconds. By registering you’ll gain:
- Full Posting Privileges.
- Access to Private Messaging.
- Optional Email Notification.
- Ability to Fully Participate.
Register Now, or check out the Site Tour and find out everything Smart Mentors has to offer.
Tagged: C / C++ Programming
This thread contains 1 reply, has 2 voices, and was last updated by
Test 7 years ago.
-
Author Replies
-
-
January 28, 2019 at 10:35 am #52605
Structures:
A structure is a user-defined data type accessible in C that permits to combining data items of various types. Structures are utilized to represent a record.
Defining a structure: To define a structure, you should utilize the struct statement. The struct statement defines a new data type, with more than one member.
The format of the struct statement is as follows:
struct [structure name]
{
member definition;
member definition;
…
member definition;
};Unions:
A union is a special data type available in C that allows storing different data types in the same memory location. You can define a union with many members, but only one member can contain a value at any given time
Defining a Union: To define a union, you must use the union statement in the same way as you did while defining a structure. The union statement defines a new data type with more than one member for your program.
The format of the union statement is as follows:
union [union name]
{
member definition;
member definition;
…
member definition;
};
-
AuthorPosts
You must be logged in to reply to this thread.Please login or register. Registration is 100% free.
