#include void f(a,b) int a; int b; { printf("A: %d, B: %d\n"); } int main(void) { f(1,2); return 0; }