awesome-repositories.com
ब्लॉग
awesome-repositories.com

AI-संचालित खोज के साथ बेहतरीन ओपन-सोर्स रिपॉजिटरी खोजें।

एक्सप्लोर करेंक्यूरेटेड खोजेंओपन-सोर्स विकल्पसेल्फ-होस्टेड सॉफ्टवेयरब्लॉगसाइटमैप
प्रोजेक्टहमारे बारे मेंहम रैंकिंग कैसे करते हैंप्रेसMCP सर्वर
कानूनीगोपनीयताशर्तें
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

2 रिपॉजिटरी

Awesome GitHub RepositoriesStack-Allocated Arrays

Fixed-size array collections allocated on the stack for deterministic memory management.

Distinct from Array Column Operations: Distinct from Array Column Operations: focuses on stack-allocated fixed-size arrays in a systems programming context, not tabular data manipulation.

Explore 2 awesome GitHub repositories matching data & databases · Stack-Allocated Arrays. Refine with filters or upvote what's useful.

Awesome Stack-Allocated Arrays GitHub Repositories

AI के साथ बेहतरीन रिपॉजिटरी खोजें।हम AI का उपयोग करके सबसे सटीक रिपॉजिटरी खोजेंगे।
  • miloyip/json-tutorialmiloyip का अवतार

    miloyip/json-tutorial

    7,939GitHub पर देखें↗

    This is an educational tutorial that walks through implementing a complete JSON library from scratch in C. The project covers the full data lifecycle of JSON, including parsing text into structured in-memory representations, validating input against the specification, serializing data back into standard JSON output, and providing structured access to elements within parsed arrays and objects. The implementation is built around a hand-written recursive descent parser that processes JSON text by matching grammar rules to build a structured data tree. Parsed values are stored in a tagged union r

    Constructs nested arrays and objects by pushing and popping elements on a dynamic stack during parsing.

    C
    GitHub पर देखें↗7,939
  • carp-lang/carpcarp-lang का अवतार

    carp-lang/Carp

    5,815GitHub पर देखें↗

    Carp is a statically typed Lisp compiler that compiles Lisp-like syntax directly to C source code, enabling seamless integration with existing C libraries and low-level system programming. It manages memory deterministically at compile time using ownership tracking and linear types, eliminating garbage collection pauses and runtime overhead while ensuring type safety through an inferred static type system. The language distinguishes itself through compile-time macro expansion and metaprogramming capabilities, allowing code generation and transformation before final binary output. It enforces

    Stores fixed-size collections of elements allocated on the stack.

    Haskellfunctionalfunctional-programminggame-development
    GitHub पर देखें↗5,815
  1. Home
  2. Data & Databases
  3. Array Column Operations
  4. Stack-Allocated Arrays

सब-टैग एक्सप्लोर करें

  • Dynamic Stack-Based Array BuildersConstructs nested arrays and objects by pushing and popping elements on a dynamic stack during parsing. **Distinct from Stack-Allocated Arrays:** Distinct from Stack-Allocated Arrays: uses a dynamic stack to build nested structures during parsing, not fixed-size stack allocation.