fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. char s1[] = {"it's in the eyes of the children as they leave for the very first time"};
  6. char s2[] = {"it's in the eyes of the children\
  7. as they leave for the very first time"};
  8.  
  9. char s3[] = {"한글입니다."};
  10. char s4[] = {"한글\
  11. 입니다."};
  12.  
  13. printf("%d %d %d %d", sizeof(s1), sizeof(s2), sizeof(s3), sizeof(s4));
  14. return 0;
  15. }
  16.  
Success #stdin #stdout 0s 2292KB
stdin
Standard input is empty
stdout
71 71 17 18