4381bb2a22
When the execution reaches the end of the main functions, they implicitly return a successful status.
9 lines
200 B
C
9 lines
200 B
C
#include <string.h>
|
|
#include <stdio.h>
|
|
|
|
int main(void) {
|
|
char *world = "world";
|
|
printf("%ld\n", strcspn("hello", world)); // should be 2
|
|
printf("%ld\n", strcspn("banana", world)); // should be 6
|
|
}
|