Write a C program function that takes the values of a two-card blackjack hands as input, and returns the point total of the hand. The value of the cards through; is equal to their face value, the cardsare worth 10 points and the ace is worth 11 points unless it comes with another ace, then that second ace is worth 1 point. The program should be able to catch incorrect input.
Write a C program function that takes the values of a two-card blackjack hands as input, and returns the point total of the hand. The value of the cards ‘2’ through ‘9’ is equal to their face value, the cards ‘T’, ‘K’, ‘Q’, ‘J’ are worth 10 points and the ace (‘A’) is worth 11 points unless it comes with another ace, then that second ace is worth 1 point. The program should be able to catch incorrect input.
For example:Enter cards: A Q The score is 21Enter cards: A A The score is 12Enter cards: T 7 The score is 17Enter cards: A 5 The score is 16Enter cards: 7 # *** Would be invalid, # is not a valid cardEnter cards: Z 4 *** Would be invalid, Z is not a valid card