Skip to content

Latest commit

 

History

History
25 lines (12 loc) · 377 Bytes

README.md

File metadata and controls

25 lines (12 loc) · 377 Bytes

to compile:

$ gcc exercise.c -o exercise

to execute:

$ ./exercise

to compile with the math.h library:

$ gcc exercise.c -o exercise -lm

to compile with standard filename a.out:

$ gcc exercise.c

to compile with standard filename a.out and execute in the same line:

$ gcc exercise.c ; ./a.out

documentation:

$ documentazione/html