
struct (short for `structure`) is a computer science term for a record that is used to store more than one value. struct is used in the following programming languages: ...
Found on
http://en.wikipedia.org/wiki/Struct
[C programming language] A struct in the C programming language (and many derivatives) is a complex data type declaration that defines a physically grouped list of variables to be placed under one name in a block of memory, allowing the different variables to be accessed via a single pointer, or the struct declared name which returns the sa...
Found on
http://en.wikipedia.org/wiki/Struct_(C_programming_language)

class with members public by default. Most often used for data structures without member functions or class invariants, as in C-style programming. TC++PL 5.7, 10.2.8, D&E 3.5.1.
Found on
http://www.stroustrup.com/glossary.html

A struct is a collection of variables, somewhat like a simplified class. It cannot have methods, but
Found on
https://www.encyclo.co.uk/local/22372
No exact match found.