Q1. Write a C function with the following prototype: void spacesToXs(char *s) This function replaces ALL space characters in the string 's' with the character 'X' (capital X). See the examples below: original string: altered string: "j a w s" "jXaXwXs" " " "XXXX" "are you ok X?" "areXyouXokXX?"
Q1. Write a C function with the following prototype: void spacesToXs(char *s) This function replaces ALL space characters in the string 's' with the character 'X' (capital X). See the examples below: original string: altered string: "j a w s" "jXaXwXs" " " "XXXX" "are you ok X?" "areXyouXokXX?"
Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
Related questions
Question
PLS DO FAST WITHIN 10 MIN . I WILL GIVE YOU 3 LIKE FOR SURE ..
SOLUTION MUST BE IN TYPED FORM
>> C code please according to instructions. ONLY C code. <<
Q1. Write a C function with the following prototype:
void spacesToXs(char *s)
This function replaces ALL space characters in the string 's' with the character
'X' (capital X).
See the examples below:
original string: altered string:
"j a w s" "jXaXwXs"
" " "XXXX"
"are you ok X?" "areXyouXokXX?"
Q2. Write a C function with the following prototype:
unsigned int howManyVowels(const char *s)
That determines how many vowels (alphabetic letters 'a', 'e', 'i', 'o', or 'u')
UPPER or lowercase are contained in the string 's'. Once complete, the function
returns the total number of vowels found or the value 0 if no vowels are found.
For example,
string: return value:
"123-xyz" 0
"This is PRG355@SENECA" 5
Q3. Write a C function with the following prototype:
void mirrorImage(char *s)
that accepts a string 's' containing at least 4 characters and reverses the
order of the characters in each half of the string.
For example,
original string: altered string:
"123456789" "432159876"
"hello world" "olleh dlrow"
"even" "vene"
MAIN PROGRAM:
// Your solution may ONLY use functions from the following
// included C library header files.
#include
#include
#include
// function prototypes:
void spacesToXs(char *s);
unsigned int howManyVowels(const char *s);
void mirrorImage(char *s);
int main( ) {
int i;
unsigned int rv;
char words1[3][31] = { "j a w s", " ", "are you OK X?" };
char words2[2][81] = { "123-xyz", "This is PRG355@SENECA" };
char images[3][31] = { "123456789", "hello world", "even" };
for(i=0; i
Expert Solution
This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
Step by step
Solved in 4 steps with 7 images
Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Recommended textbooks for you
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education