About 364,000 results
Open links in new tab
  1. Symbol Table in Compiler - GeeksforGeeks

    Aug 27, 2025 · Built during the early stages of compilation, the symbol table supports error checking, scope management, and code optimization for runtime efficiency. It plays a crucial role in ensuring …

  2. Compiler Design - Symbol Table - Online Tutorials Library

    A compiler maintains two types of symbol tables: a global symbol table which can be accessed by all the procedures and scope symbol tables that are created for each scope in the program.

  3. Symbol table - Wikipedia

    In computer science, a symbol table is a data structure used by a language translator such as a compiler or interpreter, where each identifier, symbol, constant, procedure and function in a program's source …

  4. r; begin ... with V do ... end; ... end P2; ... end M; Figure 3.19 LeBlanc-Cook symbol table for an example program in a language like Modula-2.The scope stack represents the referen.

  5. Symbol Table in Compiler Design - Naukri Code 360

    Jun 23, 2024 · The symbol table is a data structure used in compiler design. Compilers keep track of the occurrence of various entities, including variable names, function names, objects, classes, and …

  6. Implementation of Symbol table in C | Compiler Design ...

    Dec 28, 2023 · Symbol tables can be implemented with different kinds of data structure techniques. Some of the techniques are mentioned below; Symbol Table for the code shown above.

  7. Symbol Table in Compiler Design: Structure, Role, and ...

    Jun 5, 2025 · A symbol table is a data structure maintained by a compiler to store identifiers — such as variable names, function names, classes, objects, etc. — along with associated metadata.