English

Implement String Copy Function Strcopy (Str1,Str2) that Copies a String Str1 (Source) to Another String Str2 (Destination) Without Using Library Function. - Structured Programming Approach

Advertisements
Advertisements

Question

Implement string copy function STRCOPY (str1,str2) that copies a string str1 (source) to another string str2 (destination) without using library function.

Short Note

Solution

#include<stdio.h>
#include<conio.h>
void main()
{
char s1[100],s2[100],i;
clrscr();
printf(“enter string s1: “);
scanf(“%s”,s1);
for(i=0;s1[i]!=’\0’;++i)
{
s2[i]=s1[i];
}
s2[i]=’\0’;
printf(“string s2: %s”,s2);
getch();
}
Output:
Enter string s1:program
String s2: program
shaalaa.com
String
  Is there an error in this question or solution?
2017-2018 (June) CBCGS
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×