Question

6) What is the final value of variable num after executing the following statements? void Exam(int & N) A)13 ( T++ ¢ut << < 1
0 0
Add a comment Improve this question Transcribed image text
Answer #1

Using the follwing code the answer is A)13

#include <iostream>

#include <math.h>

void exam(int & N){ N++; std::cout<<N<<std::endl;}

int main(){

int num=10;

for (int i=0;i<3;i++) exam(num);

std::cout<<num;

}

Add a comment
Know the answer?
Add Answer to:
6) What is the final value of variable num after executing the following statements? void Exam(int...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT