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
  • 363,768
  • 54
  • 674
  • 675
PovilasID
  • 883
  • 10
  • 34

0 Answers0