Function Arguments in C — a practical guide to C function arguments with clear examples you can reuse in real projects.
C Programming Tutorial Series (42/102). Prefer one article? Read the complete C programming tutorial.
Short description
Arrays decay to pointers when passed to functions.
Pass by value tip
void incr(int *n) {
(*n)++;
}