Hello everyone. I am trying to compile this simple code using gcc under Cygwin terminal.
//A function that just returns a value//
int my_function()
{
return 0xbaba;
}
I saved the code as basic.c
I issue the command
$gcc basic.c
in the Cygwin terminal
And I get the error:
gcc: error: spawn: No such file or directory
I already had enough trouble installing GCC under Cygwin. Cant figure out what this means. Please Help!
Thanks in Advance!