fork(5) download
  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. int main(void) {
  5. char str[] = "teste";
  6. char *strx = "teste";
  7. printf("%s", str);
  8. printf("%s", strx);
  9. }
  10.  
  11. //https://pt.stackoverflow.com/q/236175/101
Success #stdin #stdout 0s 4572KB
stdin
Standard input is empty
stdout
testeteste