Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

code for copying two strings with out strcpy() function.

Answer Posted / suman_kotte

#inclue<stdio.h>
main()
{
char str1[10],str2[10];
int i=0;
printf("enter the str1");
gets(str1);
while(str1[i]!='\0')
{
str2[i]=str1[i];
i++;
}
puts(str2);
}

Is This Answer Correct ?    19 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

hw can we delete an internal node of binary search tree the internal node has child node..plz write progarm

2015


What is advantage of pointer in c?

1179


What is a null string in c?

1031


How can I write a function analogous to scanf?

1173


Write a program to print "hello world" without using a semicolon?

1055


What are the advantages and disadvantages of pointers?

1065


How can you increase the size of a statically allocated array?

1076


Why is c so powerful?

1111


How to find a missed value, if you want to store 100 values in a 99 sized array?

1404


What is external variable in c?

1054


hi to every one .. how to view table pool after creating the pooled table? plz help me.. if any knows abt this ..

1905


program to convert a integer to string in c language'

2451


Is fortran still used in 2018?

1034


I completed my B.tech (IT). Actually I want to develop virtual object that which will change software technology in the future. To develop virtual object what course I have to take. can I any professor to help me.

2218


What are static variables in c?

1075