I haven"t taught myself programming for long, and the problems I encounter are relatively primary. I hope all of you who pass by will give me a lot of advice, don"t spray ha if you don"t like it. The
code is as follows:
/**/
-sharpinclude <stdio.h>
void butler (void); /* ISO/ANSI C*/
int main (void)
{
printf("I will summon the butler function.\n");
butler();
printf("Yes. Bring me some tea and writeable CD-ROMS.\n");
return 0;
}
void butler (void) /* */
{
printf("You rang, sir?\n")
}
my question is:
void butler (void); /* ISO/ANSI C*/
what exactly does this line of code do? I"ve learned a little bit about JAVA and python before, and I don"t remember anything like this
.