Waiting for answer This question has not been answered yet. You can hire a professional tutor to get the answer.
In C++, What will be displayed on the console given the following code fragment?
In C++, What will be displayed on the console given the following code fragment?int main() {
int num1 = 3;
int num2 = 4;myFunction (num1, num2);system("pause");
return 0;
}void myFunction (int num1Par, int num2Par) {
cout << pow(num2Par,num1Par);
}