fork download
  1. #include <stdio.h>
  2. #include<string.h>
  3.  
  4. int main(void) {
  5. char str[]={'h','e','l','l','o','\0','w','o','r','l','d'};
  6. char str1="hello\0world";
  7. printf("%d %d %s",strlen(str),sizeof(str),str);
  8.  
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 2168KB
stdin
Standard input is empty
stdout
5 11 hello