Function C

#include 
void f(int a, int b)
{
  printf("%d ", a % b);
}
int main(void)
{
  f(10,3);
  return 0;
}