Que: Write a function GetLongestString
Problem Text : Write a function GetLongestString, whose arguments are character strings. It should return an integer representing the length of the longest string passed as its argument; for example: GetLongestString(“a”, “aaa”, “aa”) should return 3, GetLongestString(“a”, “bcd”, “efgh”, “ij”, “”) should return 4. Please write your Answer in Below Comment Box: