Avatar of sudarshantk
sudarshantk
Flag for India

asked on 

C Question

char *searchString="abcdefghijklmnopqrstuvwxyz";
char *findstring="0";
for(j=0; j < 26; j++)
{
       *findstring = *(searchString+j);      ->Want to do this, not sure how
....................
}
Please let me know.

C++CVisual C++.NET

Avatar of undefined
Last Comment
Infinity08

8/22/2022 - Mon