fork download
  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. int main(void) {
  5. char mark[11];
  6. strcpy(mark,"indastreal");
  7. mark[3]='u';
  8. mark[7]='i';
  9. printf("%s\n",mark);
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 4544KB
stdin
Standard input is empty
stdout
industrial