Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <string.h>
- void main()
- {
- int a=strlen("thedarknessbroughtinbyswallowstonenaturalishistoria"), b=strlen("doestheforbiddendoorleadtothisworldortheworldbeyond?"), c=strlen("the darkness brought in by swallowstone naturalis historia"), d=strlen("does the forbidden door lead to this world or the world beyond?");
- printf("Without spaces: %d\t%d\nWith spaces: %d\t%d", a, b, c, d);
- /*Without spaces: 51 52
- *With spaces: 58 63
- */
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement