Question: NEED C++ CODE USING ONLY TO SOLVE THESE THREE PROBLEMS! to hostname Write a function to_hostname that will take 1 input parameter address that contains
NEED C++ CODE USING ONLY 
to hostname Write a function to_hostname that will take 1 input parameter address that contains a valid URL and will transform the URL (in-place) into its respective lower case hostname (sometimes referred as subdomain/domain). For example, if address is: "https://www.cs.uri.edu/homepage/class/csc212 ?year-2013" then the resulting value in address should be "ww.cs.uri.edu". You might want to read what is a URL? before starting your implementation void to hostname (char *address); circular prime A number is called a circular prime if all rotations of its digits form a prime. For example, the number 197 is a circular prime because all possible rotations of ts digits: [197, 971, 719] are prime numbers. Write a function circular_prime that will take a parameter n, such that e
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
