Monday, July 31, 2017

Copying string 2 to string 1

#include<stdio.h>
void copystr(char [],char []);
void main()
{
    char str1[50],str2[50];
    printf("Enter 1st string,str1 : ");
    gets(str1);
    printf("\nEnter 2nd string,str2 : ");
    gets(str2);
    copystr(str1,str2);
    printf("\n\nAfter copying str2 in str1\n\nstr1 is %s ",str1);

    getch();
}
void copystr(char txt1[], char txt2[])
{
    int i;
    for(i=0;txt2[i]!='\0';i++)
    {
        txt1[i]=txt2[i];
    }
    txt1[i]='\0';

}

0 comments:

Post a Comment