Drop Down MenusCSS Drop Down MenuPure CSS Dropdown Menu

Wednesday, March 11, 2015

What is strncmp() function ?

It is a compare function that compares two strings. It contain a number field that decide how many characters are compared. It compares left most n characters.
sy:

strncmp( string1, string2, number);
ex:
strncmp( str1, str2, 10);


No comments:

Post a Comment