Question
What is the output of the following program: #include using namespace std; int fun(int data); int main() { int data = 3; data =
What is the output of the following program: #include using namespace std; int fun(int data); int main() { int data = 3; data = fun(data); cout < < "data is " < < data < < endl; return 0; } int fun(int data) { int x = 8, sum= = 0; while (--x) { sum += x; if (x %3 == 0) break; } return ++sum; Select one: a. data is 13. b. error c. data is 141 d. data is 21
Step by Step Solution
3.54 Rating (154 Votes )
There are 3 Steps involved in it
Step: 1
The image youve provided contains a sample of a C program and multiple choice answers labeled a b c ...Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get StartedRecommended Textbook for
Microsoft Visual C# An Introduction to Object-Oriented Programming
Authors: Joyce Farrell
7th edition
978-1337102100
Students also viewed these Programming questions
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
Question
Answered: 1 week ago
View Answer in SolutionInn App