cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
General C++ Programming
Pass by referenct function- need help
Pass by referenct function- need help
Mar 23, 2016 at 4:36am UTC
closed account (
owCkSL3A
)
.
Last edited on
Mar 23, 2016 at 5:19am UTC
Mar 23, 2016 at 5:18am UTC
sylphsang
(38)
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.