fork download
  1. #include<iostream>
  2. #include<string.h>
  3.  
  4. using namespace std;
  5. int main()
  6. {
  7. char s[]="Hello\0Hi";
  8.  
  9. cout<<strlen(s)<<" "<<sizeof(s);
  10. }
Success #stdin #stdout 0s 5432KB
stdin
Standard input is empty
stdout
5 9