Given the following function definition What is output to th
Given the following function definition: What is output to the screen when the function output Something (17); is called from main?
Solution
The output on the screen would be
1734
here is the code for your help-
#include <iostream>
using namespace std;
void outputsomething(int n)
{
cout<<n<<2*n<<endl;
}
int main() {
int n;
outputsomething(17);
return 0;
}
