what's wrong with the following program?

int main()
{
int score;
score = 1000;
float & rScore = score;
return 0;
}
rScore is a reference to a float. What float does it refer to?
Topic archived. No new replies allowed.