string Smaller(string,string); string sVal1 = "Wycherley" ; string sVal2 = "foyers"; string sVal3; call Smaller , use sVal1,sVal2 as parameters, store the result in sVal3 sVal3 = Smaller (sVal1,sVal2); Show Answer