fork download
  1. #include <iostream>
  2. #include <cstdio>
  3. #include <cstring>
  4. using namespace std;
  5.  
  6. int main(){
  7. char s[7];
  8. strcpy(s,"BLAHBLAHLBAL"); //12 characters long
  9. strcpy(&s[4], "123");
  10. printf("%s %d\n",s, sizeof(s));
  11. return 0;
  12. }
Success #stdin #stdout 0s 3340KB
stdin
Standard input is empty
stdout
BLAH123 7