parameter initilization in functions
I've read that it is important to initialize a variable upon definition, that way the variable will not be assigned memroy space that might contain junk values. So, for example, in a function like 'int text(int x, int y)', are x and y automatically initialized to zero? Do I have to initialize them, or the compiler takes care of it?
|