Pass by referenct function- need help
Mar 23, 2016 at 4:36am
.
Last edited on Mar 23, 2016 at 5:19am
Mar 23, 2016 at 5:18am
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.