String copy without using strcpy in C.

source code


#include<stdio.h>
void stringCopy(char[],char[]);
int main()
{
     char str1[100],str2[100];
    printf("Enter any string: ");
    scanf("%s",str1);
    stringCopy(str1,str2);
    printf("After copying: %s",str2);
   getch();
    return 0;
}
void stringCopy(char str1[],char str2[])
{
    int i=0;
    while(str1[i]!='\0')
{
         str2[i] = str1[i];
         i++;
    }
    str2[i]='\0';
}



Comments

Popular posts from this blog

8086 STRING MANIPULATION –FIND AND REPLACE A WORD

Animated Circles In C++

C program to find out the sum of series 1 + 2 + …. + n.