strcspn.c 246 B

1234567891011
  1. #include <string.h>
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4. int main(void) {
  5. char *world = "world";
  6. printf("%ld\n", strcspn("hello", world)); // should be 2
  7. printf("%ld\n", strcspn("banana", world)); // should be 6
  8. return EXIT_SUCCESS;
  9. }