I have been looking at some documentation for my C projects and came across a peculiar type of function declaration. Here is an example:
function_name(arg1, arg2)
      int arg1;
      char *arg2
{
 //function code
....
How does this differ from normal:
function_name(int arg1, char *arg2){
And witch one is better to use at certain cituations?
 
    