Question: Exercise 1- Exercise Objectives Relationship between arrays and pointers Consider the flowing function void mystery (char stri[], char str2[]) { int i=0, j=0; for (i=0;

Exercise 1- Exercise Objectives Relationship between arrays and pointers Consider the flowing function void mystery (char stri[], char str2[]) { int i=0, j=0; for (i=0; stri[i] TO' ;i++ ) ; for ( j=0;str2[j]!='\0'; j++ ) stri[i++]=str2[j]; } Write an equivelent function named myFunction that takes two input parameters of type char* and does the same as the function mystery above
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
