Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Write function char *strupper(char *s) which converts lower case letters in string s to upper case and returns a pointer the first character in the
Write function char *strupper(char *s) which converts lower case letters in string s to upper case and returns a pointer the first character in the converted string. All other characters remain unchanged. The imple- mentation must be basedon a for-loop and pointers (no array indexing).
Hint: Since pointer s must be returned, have the for-loop declare and initialize another pointer with dereferencing andincrementing thereof constituting the rest of the loop logic.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started