Question: Considering the code below, indicate what must be added in main ( ) to make this compile and run correctly: #include using namespace std; namespace

Considering the code below, indicate what must be added in main() to make this compile and run correctly:
#include
using namespace std;
namespace N1{
void myFunc(){
int i;
cout << "Please enter a number: ";
cin >> i;
}
}
namespace N2{
void myFunc(int n){
cout << "You sent me the number "<< n << endl;
}
}
int main(){
myFunc(42);
return 0;
}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!