Why won't the 'luck' function get executed?
Pasting the code of my tutorial in my compiler creates the exact same error as the little test code below:
'luck' undeclared. First use this function.
I use dev c++
Thx ;)
int main()
{
printf("hellow (printed in main)\n");
luck();
return 0;
}
luck()
{
printf("hellow again (printed in luck)\n");
}