string copy program without using strcpy()

void stringcopy(char str1[],char str2[])
{
           int i=0; 
           while(str1[i]!=’\0’) 
           { 
                    str2[i]=str1[i]; 
                    i++;
           } 
          str2[i]=’\0’;
}
int main() 
          char str1[100],str2[100]; 
          printf(“Enter the string”); 
          scanf(“%s”,str1); 
          stringcopy(str2,str1); 
          printf(“After copy:%s”,str2);
}

No comments:

Post a Comment