add2And3(int *a, int *b) { *a = 3; *b = 2; printf("%d", *a + *b); //4 } void main() { int storage; add2And3(&storage, &storage); }