Pass by referenct function- need help

closed account (owCkSL3A)
.
Last edited on
a == x1;
b == x2;
c == t;

should be like
a =x1;
b = x2;
c = t;

== is for comparison not for assignment
Topic archived. No new replies allowed.