I had a doubt regarding call by address!!!
Oct 27, 2018 at 8:29am
Question:
1.how to code an armstrong number using call by address in c++ program?
Oct 27, 2018 at 11:28am
Suppose if you have
int armstrong(int num)
then change to
void armstrong(int& num)
Notice the '&
'
Topic archived. No new replies allowed.