What does it mean if something like the two lines after the main function declaration appears in C code?
int main(argc,argv)
  int argc;
  char *argv[];
{
  // main function body
}
I've never seen anything like this before. The code works just fine, but I'm curious to know what this means. Thanks!
 
     
     
     
    