EC8393 FDS Notes, Fundamentals Of Data Structures in C Lecture Handwritten Notes

0

EC8393 FDS Notes

Anna University Regulation 2017 ECE EC8393 DS Notes, Fundamentals of Data Structures in C Lecture Handwritten Notes for all 5 units are provided below. Download link for 3rd SEM EC8393 Data Structures in C Lecture Handwritten Notes are listed down for students to make perfect utilization and score maximum marks with our study materials.

EC8393- Fundamentals of Data Structures in C

  Compile and Link C Program

There are three basic phases occurred when we execute any C program.

 Preprocessing

 Compiling

 (assembler)

 Linking

Preprocessing Phase :

A C pre-processor is a program that accepts C code with preprocessing statements and produces a pure form of C code that contains no preprocessing statements (like #include).

Compilation Phase:

The C compiler accepts a preprocessed output file from the preprocessor and produces a special file called an object file. Object file contains machine code generated from the program.

Linking Phase:

The link phase is implemented by the linker. The linker is a process that accepts as input object files and libraries to produce the final executable program.

Pre-processing
The first stage of compilation is called preprocessing. In this stage, lines starting with a # character are interpreted by the preprocessor as preprocessor commands. These commands form a simple macro language with its own syntax and semantics.

  • reduce repetition in source code
  • invoke inline files
  • define macros
  • joining continued lines (lines ending with a \)
  • removes comments.

EC8393 DS Unit 1 notes  Download Here

EC8393 DS Unit 2 notes  Download Here

EC8393 DS Unit 3 notes  Download Here

EC8393 DS Unit 4 notes  Download Here

EC8393 DS Unit 5 notes  Download Here

If you require any other notes/study materials, you can comment in the below section.

Related Links

For EC8393 DS Previous Year Question Papers – Click here

For EC8393 DS Question Bank/2marks 16marks with answers – Click here

For EC8393 DS Important Questions/Answer Key – Click here

Search Terms

EC8393 DS Notes

Anna University 3rd SEM DS Lecture Handwritten Notes

EC8393 Fundamentals of Data Structures in C  Notes free download

Anna University DS Notes Regulation 2017

EC8393 Notes, DS Unit wise Lecture Handwritten Notes – 3rd Semester

Share.

Comments are closed.