I am tring to compile and my C++ program on Linux using gcc command.
I used gcc -lm MyOwn.c Main.c -o Out
Myown.c
is another file I should link to the main.
The Out
file is successfully created.
The problem is Out
does not run.
When I tried to use gcc or cc to create exe file it gives me a lot of errors
Can someone help me?