Tagged Questions
15
votes
5answers
303 views
Goto prior to a variable definition - what happens with its value?
Here is some question I wondered about. Given the following code, can we be certain about its output?
void f() {
int i = 0;
z: if(i == 1) goto x; else goto u;
int a;
x: if(a == 10) goto y; ...
8
votes
8answers
3k views
Address of register variable
In C, we cannot use & to find out the address of a register variable but in C++ we can do the same. Why is it legal in C++ but not in C? Can someone please explain this concept in-depth.
Thanks, ...