Question: Consider the flowing function void mystery (char str1[], char str2[]) { int i=0, j=0; for (i=0; str1[i] != '0' ;i++ ) ; for (j=0; str2[j]!='0'
Consider the flowing function
void mystery (char str1[], char str2[]) {
int i=0, j=0;
for (i=0; str1[i] != '\0' ;i++ ) ;
for (j=0; str2[j]!='\0' ;j++ ){
If(str[j] >=A && str[j] <=Z)
str1[i++] = str2[j] + a - A;
else
str1[i++] = str2[j] }
}
Write an equivalent function named myFunction that takes two input parameters of type char* and does the same as the function mystery above using C language
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
