INI files

Project

Requirements for 3.0

Useful resources

Requirements for 3.5

Requirements for 4.0

Useful resources

Requirements for 4.5

Useful resources

Requirements for 5.0

Useful resources

Example files

Exercises to practice

  1. Write a cat-like utility, which opens a file and prints its content to the terminal

    $ cat input.txt
    Intelligence forged from circuits and code,
    A mind of silicon, a new kind of ode.
    
    $ ./program input.txt
    Intelligence forged from circuits and code,
    A mind of silicon, a new kind of ode.
  2. Write a simple grep-like utility, which opens a file and prints lines containing a given word

    $ cat input.txt
    Infinite knowledge at its core,
    Capable of so much more,
    A creation to marvel and admire,
    AI's greatness shall never expire.
    
    $ ./program input.txt admire
    A creation to marvel and admire,
  3. Write a program, that will read numeric content and calculate sums of each row

    $ cat input.txt
    58  32  49  22
    93  76  68  85
    14  25  17  35
    42  19  11  70
    56  81  37  98
    
    $ ./program input.txt
    161
    322
    91
    142
    272