add_one.c 69 B

123456
  1. #include <stdio.h>
  2. void add_one (int a, int *b) {
  3. *b = a + 1;
  4. }