- #include <stdio.h>
- #include <string.h>
- void main(void)
- {
- printf("Comparing 3 letters Abc with Abc %dn",
- strncmp("Abc", "Abc", 3));
- printf("Comparing 3 letters abc with Abc %dn",
- strncmp("abc", "Abc", 3));
- printf("Comparing 3 letters abcd with abc %dn",
- strncmp("abcd", "abc", 3));
- printf("Comparing 5 letters Abc with Abcd %dn",
- strncmp("Abc", "Abcd", 5));
- }