1. #include <stdio.h>
  2.  
  3. void f(a,b)
  4.     int a;
  5.     int b;
  6. {
  7.     printf("A: %d, B: %d\n");
  8. }
  9.  
  10. int main(void)
  11. {
  12.     f(1,2);
  13.     return 0;
  14. }