Serve
as a prototype within this program : Function « Function « C / ANSI-C
- C / ANSI-C
- Function
- Function
Serve
as a prototype within this program
#include <stdio.h>
void f(int a, int b)
{
printf("%d ", a % b);
}
int main(void)
{
f(10,3);
return 0;
}
Related examples in the same category