#include void foo(int& x){ x = 42; } int main(){ int turkey = 17; printf("%d\n", turkey); foo(turkey); printf("%d\n", turkey); return 0; }