Skip to content

Latest commit

 

History

History
27 lines (16 loc) · 423 Bytes

README.md

File metadata and controls

27 lines (16 loc) · 423 Bytes

SIMPLE SQRT

Description:

This is a homework for the subject FSST.

The program uses a simple algorithm to compute the sqareroot of a specific number.

Compile:

Use the following terminal command to compile the program:

    $ make
    gcc -Wall -std=c99 -g -o simplesqrt main.c

Usage:

You can use the program like:

    $ ./simplesqrt 16
   Sqrt of 16 is 4