answersLogoWhite

0

What does the word struct mean?

Updated: 8/17/2019
User Avatar

Wiki User

12y ago

Best Answer

wem colo

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What does the word struct mean?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the meaning of the word struct?

"struct" is not a word.


How does the root struct in destruction help you understand?

What does struct mean in in


What part of speech is the word constructive?

construct late Middle English: from Latin construct- 'heaped together, built,' from the verb construere, from con- 'together' + struere 'pile, build.'


What is the root word for instruction?

Break the word into the smallest meaning then find the prefix and the last bit of words should be your awnser....... struct


3 words with the root word of struct?

construe,construct, construction,desruction, destruct, infrastracure, instruct,instructive, instructor, misconstrue, obstruction, reconstruct, substructure, superstructure Struct - to build


What does the Latin root struct mean?

It means to build. It is used in the word construct which basically means to build something.


Is the root Struct Latin or Greek?

That is a trick question because the root phone is a greek AND a latin root.


What is typdef in c?

It is a keyword generally used to rename data types, using typedef you can create alias which can be used to declare the variable. e.g. typedef struct node { int info; struct node *next; }Node; now to declare variable of struct node type we can use the word Node in place of struct node


What is typdef in c language?

It is a keyword generally used to rename data types, using typedef you can create alias which can be used to declare the variable. e.g. typedef struct node { int info; struct node *next; }Node; now to declare variable of struct node type we can use the word Node in place of struct node


Is there a limit to nesting of structure?

Yes: only completely defined structured can be included (that doesn't include the actual structure itself). Example: struct a; struct b { int b1; }; struct c { struct a; /* BAD */ struct b; /* OK */ struct c; /* BAD */ };


What does inheritance mean in c?

The C Programming language doesn't actually support inheritance, it only supports composition. However, the following code demonstrates how we can use composition to approximate single inheritance: struct Base { int data; }; struct Derived { struct Base base; // ... }; int main (void) { struct Derived d; d.base.data = 42; return 0; }


Draw the node single linked list and double linked list?

typedef struct ListNode {struct ListNode *next;anytype data;} ListNode;typedef struct BiListNode {struct BiListNode *next;struct BiListNode *prev;anytype data;} BiListNode;