ArchiSys/TD/TD1/td1_lucas/ex_4/ex_4.c

16 lines
212 B
C
Raw Normal View History

2024-02-02 11:08:48 +01:00
#include <stdio.h>
void show(int *a, int b) {
*a = (*a) + 5;
b = b + 5;
}
int main() {
int a = 0;
int b = 0;
show(&a, b);
printf("Référence: %d, Valeur: %d\n", a, b);
return 0;
}