How to use function argument types after the list of function arguments in C

1 Answer

0 votes
#include <stdio.h>
 
void function(x, y)int x;int y;    
{
    printf("%d %d\n", x, y);
}
 
int main()
{
    function(7, 13);
    
    return 0;
}


/*
run:
  
7 13

*/

 



answered Jul 5, 2018 by avibootz
...