Question: C program Very important please solve under 1 hour Points) write a progra to split an input string (variable name) into two output strings (variables

C program Very important please solve under 1 hour
Points) write a progra to split an input string (variable "name") into two output strings (variables "first" and "last"). Assume that the user provides input containing only the characters a through z and A through Z. Assume there are exactly two capital letters in the input, one at the beginning of the first name, and one at the beginning of the last name. For example, given the input Joesmith", your code should split it into "Joe" and "Smith". Your code should use the following lines: char name[50], first [25], last [25]; printf(nat is your name? "); scanf("*s,name)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
