Actual working tests on strspn and strcspn

This commit is contained in:
Tom Almeida
2018-03-14 10:55:01 +08:00
parent cfe98ab3b2
commit b2d01a67f2
2 changed files with 9 additions and 5 deletions
+6 -3
View File
@@ -2,9 +2,12 @@
#include <stdio.h>
int main(int argc, char* argv[]) {
printf("%lu\n", strspn("hello", "hello")); // should be 5
printf("%lu\n", strspn("world", "wendy")); // should be 1
printf("%lu\n", strspn("banana", "apple")); // should be 0
char *hello = "hello";
char *world = "world";
char *banana = "banana";
printf("%lu\n", strspn(hello, "hello")); // should be 5
printf("%lu\n", strspn(world, "wendy")); // should be 1
printf("%lu\n", strspn(banana, "apple")); // should be 0
return 0;
}