Wednesday, April 1, 2015

C program to copy one string into another string without using standard function.

Write a ‘C’ program to copy one string into another string without using standard function.

#include<stdio.h>
#include<conio.h>
#include<string.h>
void disp(char *,char *);
void main()
{
char t[20],s[20];
clrscr();
printf("enter the string");
gets(t);
disp(t,s);
getch();
}
void disp(char *t,char *s)
{
while(*t!='\0')
{
*s=*t;
t++;
s++;
}
printf("%s",s);
}

Featured posts

स्मार्ट इन्वेस्टिंग फॉर बिगिनर्स:

 स्मार्ट इन्वेस्टिंग फॉर बिगिनर्स:  पैसिव इनकम कमाने का आसान रास्ता"।  इसमें मैंने बताया है कि कैसे छोटी रकम से शुरुआत करके, म्यूचुअल फ...

Popular posts