You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cout << fname << "Ji " << age << " years old. \n";
}
int main() {
myFunction("Erra", 3);
myFunction("Preeti", 14);
myFunction("Khushi", 30);
return 0;
}
//Remember:-that when you are working with multiple parameters, the function call must have the same number of arguments as there are parameters, and the arguments must be passed in the same order.