Need to write a program that inputs a telephone number as a string in the form (608) 123-1234. This program should use strtok function to extract the area code as a token, the first three digits of the number as a token, and the last four digits of the number as a token as well. The seven digits of the phone number should be concatenated into one string. The program should convert the area code string to int and convert the phone number string to long. Both the area code and the phone number should be printed out.