#include <stdio.h> /* programm to see who a pointer work with functions Written by Matthias Fechner */ void callByValue(int); void callByReference(int*); int main(void) { int i; i=1; callByValue(i); callByReference(&i); return 1; } void callByValue(int i) { i=8; return; } void callByReference(int *i) { *i=13; return; }