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:
You must be logged in to post a comment.