Showing posts with label System Programming and Compiler Construction (SPCC). Show all posts
Showing posts with label System Programming and Compiler Construction (SPCC). Show all posts

Error recovery techniques used by compiler

The error recovery techniques used by the compiler are as follows: Panic Mode Recovery This is the simplest method to implement and can be used by most parsing methods. On...

Absolute Loader

The absolute loader is a kind of loader in which relocated object files are created, loader accepts these files and places them at a specified location in the memory. This...

Explain 'Compile and Go' Loader

    In this type of loader, the instruction is read line by line, its machine code is obtained and it is directly put in the main memory at some...

General Loader Scheme

In this loader scheme, the source program is converted to object program by some translator (assembler). The loader accepts these object modules and puts the machine instruction and data in...

Difference between LL Parser vs LR Parser. LL Parser vs LR Parser

LL Parser LR Parser It is also known as top-down parsing. It is also known as bottom-up parsing. First L of LL is for left to right (i.e, input is...

Define Compiler, Interpreter, Assembler, Linker, Loader, Macro.

Compiler    A compiler is a computer program (or a set of programs) that transforms source code written in a programming language (the source language) into another computer language (the...

Difference between Compiler and Interpreter. Compiler vs Interpreter

Compiler: A compiler is a computer program(or a set of program) that transforms source code written in a programming language into another computer language(the target language). Interpreter: An interpreter is a common...