Quote Originally Posted by themsaman
I watch the variable b which gives at the start b = 58
You can ignore the garbage until you are actually at or past the point where b has been set to some initial value.

This:
Code:
printf("%d, %d\n",&a,&b);
should be:
Code:
printf("%d, %d\n", a, b);