352
8-11 Function Table
The default function library
(double)0.693147180559945309417232121458
(double)2.3025850929940459010936137929093
(double)1.41421356237309504880168872421
(double)3.1415926535897932384626433832795
(double)1.57079632679489661923132169163975
(double)4.71238898038468985769396507491925
void * memchr(const void *s, int c, size_t n);
Return the first c position among
n words before s position
int memcmp(const void *s1, const void *s2, size_t n);
Compare the first n words of
position s1 and s2
void * memcpy(void *s1, const void *s2, size_t n);
Copy n words from position s2 to
s1 and return s1
void * memset(void *s, int c, size_t n);
Replace the n words start from s
position with word c, and return to
position s
char * strcat(char *s1, const char *s2);
Connect string ct behind string s
char * strchr(const char *s, int c);
Return the first word c position in
string s
int strcmp(const char *s1, const char *s2);
char * strcpy(char *s1, const char *s2);
Copy string s1 to string s2
tudonghoatoancau.com