fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. char s[]={'h','g','k'};
  5. char a[]="abc";
  6. printf("%s",s);
  7. printf("%s",a);
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0s 5304KB
stdin
Standard input is empty
stdout
hgkabcabc