Drop Down MenusCSS Drop Down MenuPure CSS Dropdown Menu

Wednesday, March 11, 2015

What is strncpy() function ?

It is just similar to the function strcpy(). In strncpy() function we select number of characters for copy from source string to destination string.

Sy:
strncpy( strng1, string2, number);
ex:
strcpy( str1, str2, 10);


No comments:

Post a Comment