Skip to content

Latest commit

Β 

History

History
29 lines (20 loc) Β· 870 Bytes

readme.md

File metadata and controls

29 lines (20 loc) Β· 870 Bytes

C Programming Syllabus.

  1. Compiler
  2. Interpriter
  3. Assembler
  4. Life Cycle of C Programming
    # - Preprocessor | Interupt Processor and Execute Current File 

    include - Include Libraries

    <> - Bin Folder Path

    stdio - Standard Input | Output
    
    conio - Console Input | Output

    Preprocessor -> .c -> HLL(High Level Language) -> Source File(Readable File)(Complexity is Present)

    Compiler -> .c -> Check Syntatical Errors(Grammer) -> If Error Then It Returns Error -> Compile time Error

    Assembler -> .obj -> MLL(Machine Level Language) - > Assembly Language (.asm) -> Check Logick in the given Progeram -> Run time Error -> Convert into Binary language

    *Linker/Loader -> 
     
    Executable File -> .exe -> Executable File(Readable format)(Complexity is Hidden )
  1. Variables
  2. Data Types 7