Advertisements
Advertisements
Question
Write a program in C++ to accept a string from keyboard and copy string into another string without using the Library Function.
Answer in Brief
Solution
#include<iostream.h>
#include<conio.h>
int main()
{
char s1[100], s2[100], i;
clrscr();
cout<<"Enter string s1: ";
cin>>s1;
for(i=0; s1[i]!='\0'; ++i)
{
s2[i]=s1[i];
}
s2[i]='\0';
cout<<"String s2: "<<s2;
getch();
}
shaalaa.com
C++ Programming
Is there an error in this question or solution?