#include void func(void) { int value1, value2 = 9; printf("%d %d\n", value1, value2); } void main(void) { func(); }