โช Choose the correct option.
What will be the output of the following program?
#include
void MyFunction(int a, int b = 40) {
cout<< " a = "<< a << " b = " << b << endl;
}
int main() {
MyFunction(20, 30);
return 0;
}