fork download
  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. int main(void) {
  5. char workweek[4] = "1650";
  6. char pwCode[4] = "";
  7.  
  8. printf("%s\n", "hello");
  9. memset(pwCode, ' ', sizeof(pwCode));
  10. memcpy(pwCode, workweek + 1, 3);
  11. printf("hello");
  12. printf("%s\n", pwCode);
  13. return 0;
  14. }
Success #stdin #stdout 0s 9432KB
stdin
Standard input is empty
stdout
hello
hello650 �