I am trying to compile a C program in the terminal.
This is my command:
gcc -1 string -o syncing.c -o syncing
This is my result:
clang: error: no input files
I know that -1
... indicates the library I used, syncing.c
is the C file I am trying to compile.
What am I doing wrong with my command or is it something else?
I am only using standard libraries.