About 42,000 results
Open links in new tab
  1. C Structures (structs) - W3Schools

    Structures Structures (also called structs) are a way to group several related variables into one place. Each variable in the structure …

  2. struct (C programming language) - Wikipedia

    In the C programming language, struct (referring to a structure) is the keyword used to define a composite, a.k.a. record, data type – …

  3. C Structures - GeeksforGeeks

    Apr 8, 2026 · In C, a structure is a user-defined data type that can be used to group items of possibly different types into a single …

  4. C++ Structures (struct) - W3Schools

    C++ Structures Structures (also called structs) are a way to group several related variables into one place. Each variable in the …

  5. Struct declaration - cppreference.com

    A struct is a type consisting of a sequence of members whose storage is allocated in an ordered sequence (as opposed to union, …

  6. C struct (Structures) - Programiz

    In this tutorial, you'll learn about struct types in C Programming. You will learn to define and use structures with the help of examples. …

  7. Structures in C - Online Tutorials Library

    Structures in C A structure in C is a derived or user-defined data type. We use the keyword struct to define a custom data type that …

  8. struct (C++) | Microsoft Learn

    Aug 3, 2021 · struct The struct keyword. ms-decl-spec Optional storage-class specification. For more information, refer to the …

  9. struct — Interpret bytes as packed binary data — Python 3.14.7 ...

    1 day ago · Source code: Lib/struct.py This module converts between Python values and C structs represented as Python bytes …

  10. C++ keyword: struct - cppreference.com

    If a function or a variable exists in scope with the name identical to the name of a non-union class type, struct can be prepended to …