void function(int i) { return i; // void function cannot return a value } void main() { int i; function(i); }