Question: DEFINITION Just modify the code in Part C in the following manner: 1. int array[8] should be replaced by the char array[] = EENG112 Introduction

![manner: 1. int array[8] should be replaced by the char array[] =](https://dsd5zvtm8ll6.cloudfront.net/si.experts.images/questions/2024/09/66f31763e7b51_26766f3176359f47.jpg)
DEFINITION Just modify the code in Part C in the following manner: 1. int array[8] should be replaced by the char array[] = EENG112 Introduction to Programming" 2. modify call_by_reference array so that its input is char* and it modifies its input as follows: a. Each vowel is replaced by a character 1, b. Each consonant is replaced by a character O. 3. print_ID_array should be modified to print character sequence. Keep the original form of code in Part C, just make required modifications. To explore the usage pointers Objective: Syntax: float* b; double* C; char* d; long* e; int* a; example: int* a; int aa; a = &aa; *a = 1; Experiment: In this experiment, you will understand the concept and the use of pointers. Prob. 1: The program creates three integer type variables, and three pointers to integer type variables, and shows their values to the screen, than by using pointers we modify original values and show again them to the screen, and also it shows the address of created integer variables. #include
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
