when I read a book, I write the following code and type
.-sharpinclude<stdio.h>
-sharpinclude<stdlib.h>
/*acb*/
void butler(void);
int main()
{
printf("a"); //a
butler(); //void butler
printf("b"); //b
return 0;
}
void butler();
{
printf("c"); //c
}
I can"t go down and execute void butler (); to solve the problem first. If you can tell me in a simple sentence, thank you