what can i do to fix ? why do i get the error ?
thank you
what can i do to fix ? why do i get the error ?
thank you
Please post a copy of the source code, main.c
There is no "-errors" flag for gcc. Instead, you're passing the -e flag with the argument "rrors". I'm not sure what you want -errors to do, but I would at least suggest adding -Wall to turn on a lot of useful warnings. If you want warnings to be treated as errors, use -Werror as well.