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...

Implement strncpy

Answer Posted / ada

char *my_strncpy( char *dst, char *src, size_t n)
{
int i = n;
char *p = dst;

if(!dst || !src)
return dst;

while( i != 0 && *src != '\0' )
{
*p++ = *src++;
i --;
}

while( i!=0 )
{
*p++ = '\0';
i --;
}

return dst;
}

Is This Answer Correct ?    6 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What methods can be overridden in java?

1257


What is the difference between a pointer and a link in c ++?

1046


Does c++ have string data type?

1104


Explain what are the sizes and ranges of the basic c++ data types?

1157


What are virtual functions in c++?

1179


Why is c++ is better than c?

970


What is abstract keyword in c++?

1070


Array base access faster or pointer base access is faster?

2296


What is a buffer c++?

1058


What is c++ vb?

1084


Why we use #include conio h in c++?

1042


What is array give example?

1049


What is const pointer and const reference?

1156


What is a float in c++?

980


Can I uninstall microsoft c++ redistributable?

1112