Question: This is for a C program and I do need a lot of help with it, if anyone can show me how to do this
All Programs Must Have Header Comments and Inline Comments Consistent Indentation and Spacing All programs must compile. Programs that do not compile will receive a grade of zero. Lab 4a: More with Strings Make a new folder for lab4a. Write this in C Create a header file functions4a.h with the prototypes for the two functions shown below. Include a preprocessor wrapper. 1. void split Alpha const char original, char lower char upper The variables original, lower, and upper are null-terminated strings The function splitAlpha should copy the lowercase letters from original to lower, and the uppercase letters from original to upper lower and upper are assumed to be large enough to hold the number of characters that need to be moved. The string original may contain non-alphabetic characters. The contents of original should not be changed. For example, if original contains "The symbol for Intel is INTC." After the function completes, lower should contain "hesymbolforntelis" and upper should contain "TIINTC
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
