Provided Code Include Include Include Char Tolower Char C Return C C C C C Q37107971

1. Remove, Replace, Flip For this program you wl implement the following utility functions. void removeBlanks(char *sre, char

Sample output from the program Enter string for remove blanks and replace char function functions Hel lo Wor ld! Enter string

You wil find it helpful to have reference of a table of ASCII codes for this problem: 32 20 040 #32; Space! 64 40 100 #64;

Provided Code

===========================================================

#include <stdio.h>

#include <stdio.h>

#include<string.h>

char toLower(char c)

{

return (c >= ‘A’ && c <= ‘Z’) ? (char)((int)c +32) : c;

}

int isLower(char c)

{

return (c >= ‘a’ && c <=

OR
OR

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.