Advertisement
KDOXG

ZUN made two long name songs, so I had to write this code

Sep 28th, 2018
465
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.46 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. void main()
  5. {
  6.     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?");
  7.     printf("Without spaces: %d\t%d\nWith spaces: %d\t%d", a, b, c, d);
  8.     /*Without spaces: 51    52
  9.     *With spaces: 58    63
  10.     */
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement