12
int x; //x not initialized...what is its value? garbage int y = x; //used without initializing, x and y are both garbage now
int x = 0; //this is initializing x to 0 int y = x; //no warning now