Strcmp

Nasza ocena:

3
Wyświetleń: 2100
Komentarze: 0
Notatek.pl

Pobierz ten dokument za darmo

Podgląd dokumentu
Strcmp - strona 1

Fragment notatki:

Strcmp  int strcmp(const char *s1, const char*s2);  strcmp performs an unsigned comparison of s1 to s2  Returned value: - 0 if s1 s2 #include #include int main() { char *buf1 = "alice", *buf2 = "andrew"; int p; p = strcmp(buf2, buf1); if (p 0) printf("buf2 is greater than buf1\n"); else printf("buf2 is less than buf1\n"); return 0; } /* Result: buf2 is greater than buf1 */ ... zobacz całą notatkę



Komentarze użytkowników (0)

Zaloguj się, aby dodać komentarz