#include using namespace std; void SillyFun(int, string); int main() { string foo{"hello"}; // string foo = "hello"; int x{3}; SillyFun(x,foo); } void SillyFun(int first, string second) { cout << " The int is " << first << endl; cout << " The string is " << second << endl; }