A simple c program is needed to create encrypt and decode social
security numbers. Then a validation must be used to make sure there
are no invalid numbers.
**********************************************C
PROGRAMMING*********************************************************************************
char social[][12] =
{"164-55-0726","948-44-1038","193-74-0274","458-57-2867","093-00-1093","159-56-9731","695-21-2340","753-66-
6482","852-73-4196","648-81-1456","879-61-1829","123-87-0000","000-65-3197","741-85-9632","963-25-7418"};
Create a function that will accept as input a properly formatted
social security number.
Then increment each digit by one. If the digit is "9" then make it
a "0". Return a properly formatted
social security number.
Then create a function that will do the...