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

Relationship between arrays and pointers Consider the flowing function void mystery (char 

Relationship between arrays and pointers Consider the flowing function void mystery (char strl1 [], char str2 []) { int i=0, j=0; for(i=0; strl [i] != '\0' ;i++) ; for(j=0; str2 [j] != '\0'; j++) strl [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 Activate Win Go to Settings t

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!