0

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?

sepp2k
  • 353,842
  • 52
  • 662
  • 667
PovilasID
  • 843
  • 10
  • 29

0 Answers0