Multiple Variable Assignments with cin.

I am trying to do this with a program using overloaded function names. The last time I tried this, it gave my a uninitialized local variable error
Basically, what I am attempting to do is this.

cin >> a, b, c, d, e;

Why won't this work, when something similar has worked for me before?
Last edited on
cin >> a >> b >> c >> d >> e;
Thank you.
Topic archived. No new replies allowed.