fork download
  1. /*strarray01.c*/
  2. #include <stdio.h>
  3.  
  4. int main(void)
  5. {
  6. // your code goes here
  7. char str[4]="ABC";
  8. printf("%s\n",str);
  9.  
  10. str[0]='d';
  11. str[1]='e';
  12. str[2]='f';
  13.  
  14. printf("%s\n",str);
  15.  
  16. return 0;
  17. }
  18.  
  19.  
Success #stdin #stdout 0s 5320KB
stdin
Standard input is empty
stdout
ABC
def