#include void tofu(int x) { x = 371; } int main() { int a = 23; printf("%i\n", a); tofu(a); printf("%i\n", a); }